摘要: 通过UIWebView加载读取本地文件 UIWebView是苹果自带的框架,也算是苹果程序内部的浏览器,可以浏览web网页,也可以打开HTML/HTM、PDF、docx、txt等格式的文本文件,其实苹果自带的浏览器Safari就是用UIWebView来实现的,具体原理简单的说就是服务器将MIME的标 阅读全文
posted @ 2019-06-13 17:56 OIMMZC 阅读(383) 评论(0) 推荐(0) 编辑
摘要: 有时候需要根据tag来获取cell,需要创建NSIndexpath,我们可能会这么用: NSIndexPath *indexPath = [[NSIndexPath alloc] initWithIndex:tag]; 没有报错,但很遗憾的是通过这样的indexPath,你是怎么都获取不到cell的 阅读全文
posted @ 2019-06-13 14:52 OIMMZC 阅读(778) 评论(0) 推荐(0) 编辑
摘要: //某个section刷新 NSIndexSet *indexSet = [[NSIndexSet alloc] initWithIndex:2]; [tableview reloadSections:indexSet withRowAnimation:UITableViewRowAnimationAutomatic]; //某个cell刷新 NSIndexPath... 阅读全文
posted @ 2019-06-13 10:29 OIMMZC 阅读(708) 评论(0) 推荐(0) 编辑
摘要: tableview刷新某一行 [tabelView reloadRowsAtIndexPaths:[NSArray arrayWithObjects:[NSIndexPath indexPathForRow:IndexPath.row inSection:IndexPath.section], nil] withRowAnimation:UITableViewRowAnimationNone];... 阅读全文
posted @ 2019-06-13 10:19 OIMMZC 阅读(159) 评论(0) 推荐(0) 编辑