在didSelectRowAtIndexPath 里面取cell的方法
Posted nocrash
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在didSelectRowAtIndexPath 里面取cell的方法相关的知识,希望对你有一定的参考价值。
选中了tableview的cell的某一行
-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
}
UITableViewCell *cell = [tableView cellForRowAtIndexPath:indexPath];
如果你是自定义的话就用下面这种
MyCustomCell *cell = (MyCustomCell *)[tableView cellForRowAtIndexPath:indexPath];
以上是关于在didSelectRowAtIndexPath 里面取cell的方法的主要内容,如果未能解决你的问题,请参考以下文章
tableView - didSelectRowAtIndexPath 未调用
在 didSelectRowAtIndexPath 中呈现缓慢的 ViewController
我可以麻烦UITableViewDelegate的didSelectRowAtIndexPath:吗?
在 didselectRowAtIndexPath 之后 UITableView 无法滚动底部