1

我用

[tableView selectRowAtIndexPath:index animated:YES scrollPosition:UITableViewScrollPositionMiddle];

将表格滚动到单元格,我想更改单元格中的文本颜色。但,

-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)
-(NSIndexPath *)tableView:(UITableView *)tableView willSelectRowAtIndexPath:(NSIndexPath *)indexPath
-(void)tableView:(UITableView *)tableView didHighlightRowAtIndexPath:(NSIndexPath *)indexPath

都不能回调。

我能做些什么?

4

2 回答 2

1

自己叫吧...

[tableView.delegate tableView:tableView didSelectRowAtIndexPath:index];
于 2014-04-17T15:17:27.237 回答
0

我使用了一个不推荐使用的属性:

cell.selectedTextColor

不是很好,但有效。

于 2013-10-30T22:27:12.457 回答