我想自定义UITableView中所有UITableViewCell的背景。到目前为止,我还无法自定义它们。
看看这里:TableView
答案 0 :(得分:1)
在你的GetCell方法中,只需:
public override UITableViewCell GetCell (UITableView tableView, NSIndexPath indexPath)
{
//Do cell stuff here
MyTestCell myCell = tableView.DequeueReusableCell("MyTestCell") as MyTestCell;
.......
.........
myCell.BackgroundColor = UIColor.Blue;
}
这样,所有UITableView单元格都将具有您设置的颜色!