Hey guys. I am struggling with this for awhile and I am out of ideas already. I want to change the color of the input text within my EntryCell but I am able only to change the color of my labels. Here is my renderer:
public class MyEntryCellRenderer : EntryCellRenderer {
public override UITableViewCell GetCell (Cell item, UITableViewCell reusableCell, UITableView tv)
{
var menuCell = item as EntryCell;
var cell = base.GetCell(menuCell, reusableCell, tv);
cell.TextLabel.Text = menuCell.Label;
cell.TextLabel.TextColor = UIColor.White;
cell.TintColor = UIColor.White;
cell.BackgroundColor = UIColor.Clear;
return cell;
}
}
I would be really happy if someone of you have the solution for this ..