我的tableview中cell绑值方法是 -(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{ 我的点击方法是-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath |
|
– (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath – (UITableViewCell *)cellForRowAtIndexPath:(NSIndexPath *)indexPath; |
|
意思是我使用的点击方法不对? 应该使用- (UITableViewCell *)cellForRowAtIndexPath:(NSIndexPath *)indexPath; |
|
20分 |
– (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath UITableViewCell *cell = [tableView cellForRowAtIndexPath:indexPath]; |
非常感谢,搞定了! |
|
遇到问题多想想。给出思路了还没法解决,非要给出代码才可以? |