我想把我的手机accessoryType的颜色从蓝色改为白色。textColor已经设置为白色。你们中有人知道怎么做吗?
我的守则:
cell!.accessoryType = UITableViewCellAccessoryType.Checkmark
发布于 2015-04-04 21:31:46
可以将UITableViewCell tintColor属性设置为所需的颜色:
[cell setTintColor:[UIColor whiteColor]];发布于 2019-11-02 13:53:44
发布于 2016-03-01 23:37:56
斯威夫特
cell.tintColor = UIColor.whiteColor()Swift 3.0
cell.tintColor = UIColor.whitehttps://stackoverflow.com/questions/29451482
复制相似问题