cellView中的cell.accessoryType不是workinkg,也就是tableView的cellForRowAtIndexPath ...方法

时间:2010-12-16 00:09:53

标签: objective-c tableview accessorytype

我在导航控制器中有一个tableView

我想改变背景,我使用

[[self view] setBackgroundColor:SomeColor];

在控制器类

中的-awakeFromNib方法中

如果“SomeColor”为黑色,我看不到cell.accessoryType (UITableViewCellAccessoryDisclosureIndicator)

有没有办法让它成为白色?

我尝试在cell.accessoryType = UITableViewCellAccessoryDetailDisclosureButton; metod中设置- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath,但没有任何反应,我错过了什么?

1 个答案:

答案 0 :(得分:2)

尝试在- (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath {中执行此操作 如果表格视图很简单。