我在导航控制器中有一个tableView
我想改变背景,我使用
[[self view] setBackgroundColor:SomeColor];
在控制器类
中的-awakeFromNib
方法中
如果“SomeColor”为黑色,我看不到cell.accessoryType (UITableViewCellAccessoryDisclosureIndicator)
。
有没有办法让它成为白色?
我尝试在cell.accessoryType = UITableViewCellAccessoryDetailDisclosureButton;
metod中设置- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
,但没有任何反应,我错过了什么?
答案 0 :(得分:2)
尝试在- (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath {
中执行此操作
如果表格视图很简单。