This question is locked. New answers and comments are not allowed.
Hi,
I am using the ListView and defining a cell like so:
1.public override TKListViewCell CellForItem(TKListView listView, NSIndexPath indexPath)2.{3. TKListViewCell cell = listView.DequeueReusableCell("cell", indexPath) as TKListViewCell;4. cell.TextLabel.Text = this.owner.AssetIdentifiers.GetItem<NSString>((uint)indexPath.Row);5. cell.DetailTextLabel.Text = this.owner.SiteNames.GetItem<NSString>((uint)indexPath.Row);6. cell.DetailTextLabel.Font.WithSize(new nfloat(10.0));7. return cell;8.}
When I do this, the DetailTextLabel gets cutoff (screenshot attached) how do I fix this? Seems like a bug.