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

all はコールバックできません。

私に何ができる?

4

2 に答える 2

1

自分で呼んで...

[tableView.delegate tableView:tableView didSelectRowAtIndexPath:index];
于 2014-04-17T15:17:27.237 に答える