博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
UItableview section和cell的局部刷新
阅读量:5967 次
发布时间:2019-06-19

本文共 415 字,大约阅读时间需要 1 分钟。

局部刷新

//一个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];  

转载于:https://www.cnblogs.com/sayimba/p/5698315.html

你可能感兴趣的文章
20145328 《信息安全系统设计基础》第2周学习总结
查看>>
ssh user@host "command" 与login host运行shell的区别
查看>>
设置redis访问密码
查看>>
C# 数据库连接字符串拼接
查看>>
SSL/TLS深度解析--测试TLS/SSL加密
查看>>
hdu4405 掷骰子走格子
查看>>
我的友情链接
查看>>
from_子句-内连接-左连接-右连接
查看>>
我的友情链接
查看>>
Spring MVC 数据回显
查看>>
(三)Redis两种持久化方案
查看>>
我的友情链接
查看>>
KVM 管理与使用说明
查看>>
JavaSE_1 基本概念
查看>>
ELK实时日志分析平台环境部署--完整记录
查看>>
struts2上传多文件(b)
查看>>
mycat核心配置详解(schema.xml配置)
查看>>
201621123015《Java程序设计》第11周学习总结
查看>>
lamp的源码安装
查看>>
我的友情链接
查看>>