今天在做项目的时候 发现调用tableview 的 reloaddata 方法的时候出现崩溃. - 具体操作是执行某个方法后将数据数组中的某条数据删除(数组中存数组)发现调用刷新方法后 程序崩溃,查看日志发现是数组越界 调试发现 numofsections 这个方法要慢于 cellforrow...
分类:
其他好文 时间:
2016-02-26 00:26:09
阅读次数:
270
iosUITableview刷新某一行 或section//一个section刷新 NSIndexSet *indexSet=[[NSIndexSet alloc]initWithIndex:2]; [tableview reloadSections:indexSet withRowAnimatio...
分类:
其他好文 时间:
2015-09-08 19:57:55
阅读次数:
183
代替tableview的reloadData方法(有动画)1 //一个section刷新 2 NSIndexSet *indexSet=[[NSIndexSet alloc]initWithIndex:0]; 3 [tableview reloadSections:indexSet withRo.....
分类:
移动开发 时间:
2015-07-27 18:17:09
阅读次数:
134
UITableView刷新分为整体刷新和局部刷新,必须先修改数据,然后再刷新。1)整体刷新:// 先修改模型数据 NSString *text = [alertView textFieldAtIndex:0].text; shop *shop = _shops[row]; sh...
分类:
其他好文 时间:
2015-07-14 15:12:37
阅读次数:
174
iosUITableview刷新某一个cell或section//一个section刷新 NSIndexSet *indexSet=[[NSIndexSet alloc]initWithIndex:2]; [tableview reloadSections:indexSet withRowAnima...
分类:
移动开发 时间:
2015-04-22 10:57:42
阅读次数:
165
#import "ViewController.h"
//加入引用的头文件
#import "UIView+MJExtension.h"
#import "MJRefresh.h"
static
const CGFloat MJDuration =
2.0;
@interface
ViewController ()UITable...
分类:
其他好文 时间:
2015-03-20 16:23:24
阅读次数:
166
popViewControllerAnimated后,进入的viewcontroller不能即时刷新。这时它不执行viewDidLoad,但执行viewWillAppear:(BOOL),所以只要把刷新逻辑写到viewWillAppear:(BOOL)里就OK了。但要注意当有刷新label这样的vi...
分类:
移动开发 时间:
2015-01-17 17:48:19
阅读次数:
169
//一个section刷新 NSIndexSet *indexSet=[[NSIndexSet alloc]initWithIndex:2]; [tableview reloadSections:indexSet withRowAnimation:UITableViewRowAnimationAut...
分类:
其他好文 时间:
2014-11-05 18:56:55
阅读次数:
213
对之前的项目总结一下: 事情是这样的,我需要在定制Cell完成新闻类app的展示 虽然说SDWebImage提供了一个方法,异步加载图片到UIImageView上 但是,有些时候。需要的图片并不是需要铺满UIImageView 于是就抛弃了...
分类:
移动开发 时间:
2014-08-18 22:12:44
阅读次数:
279