如何在xamarin ios中自定义UITableViewCell的背景颜色?

时间:2017-02-17 12:09:37

标签: ios xamarin.ios

我想自定义UITableView中所有UITableViewCell的背景。到目前为止,我还无法自定义它们。

看看这里:TableView

1 个答案:

答案 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单元格都将具有您设置的颜色!