ios cell的刷新调用哪些方法

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ios cell的刷新调用哪些方法相关的知识,希望对你有一定的参考价值。

参考技术A 你可以调用UITableView的delegate方法啊, - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath ,然后判断你这个uitableviewcell的位置, if (indexPath.row == 你所在的index) ,写上退出方法就ok了

iOS刷新某个cell时候crash

//一个section刷新    
NSIndexSet *indexSet=[[NSIndexSet alloc]initWithIndex:2];    
[tableview reloadSections:indexSet withRowAnimation:UITableViewRowAnimationAutomatic];    
//一个cell刷新    
NSIndexPath *indexPath=[NSIndexPath indexPathForRow:3 inSection:0];    
[tableView reloadRowsAtIndexPaths:[NSArray arrayWithObjects:indexPath,nil] withRowAnimation:UITableViewRowAnimationNone];  

总crash
后来发现刷新之后要end

[tableView endUpdates];


以上是关于ios cell的刷新调用哪些方法的主要内容,如果未能解决你的问题,请参考以下文章

iOS tableViewCell嵌套tableview,cell刷新紊乱解决办法

iOS UITableView 刷新

iOS tableViewCell 在cell赋值网络加载照片位置偏移大小错乱,做一个类似qq列表的tableview

ios开发 cell从屏幕外滑动进屏幕里面 重新走刷新表格的方法吗

iOS中UITableView数据源刷新了,但tableview当中的cell没有刷新

iOS 杂笔-如何解决tableview显示错乱问题