我们不是在谈论数千行或任何东西,尽管如果有办法让事情扩大到那么高,我会喜欢的。
我有一个包含 27 个部分和 180 行的表格,分布在所有部分中,而我目前陷入的场景是当我将事物动画化为只有 3 个部分和 5 行的模型状态时,并且(更糟)又回来了。
我正在使用 beginUpdates/endUpdates 批处理所有动画。我的应用程序在 iphone4 上很好地锁定了 1-2 秒,同时它弄清楚了事情,然后动画开始了。
我已经尝试过为每行的删除/添加设置动画,将部分保留在周围(在删除的情况下将它们的行数降至 0),并且仅对部分本身的删除/插入进行动画处理(当行数将已降至 0)。我会假设后者会提供更好的性能,但它根本没有改变任何事情。
有什么可以在应用端做的来加快速度吗?现在,如果有超过 20 个动画,我有相当多的代码来摆脱单个动画,而是选择仅重新加载数据。
编辑此处显示问题的代码。这段代码的性能略好于等效的单点触控代码(这是我之前使用的),但仍然很糟糕。
#import "TableViewController.h"
@interface MyTableViewDataSource : NSObject<UITableViewDataSource> {
int rows;
};
@end
@implementation MyTableViewDataSource
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
return 1;
}
- (void)setRowCount:(int)r
{
rows = r;
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
return rows;
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (!cell)
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
cell.textLabel.text = [NSString stringWithFormat:@"row %d", indexPath.row];
return cell;
}
@end
@implementation MyTableViewController {
UIBarButtonItem *populateButtonItem;
};
- (id)initWithStyle:(UITableViewStyle)style
{
self = [super initWithStyle:style];
if (self) {
populateButtonItem = [[UIBarButtonItem alloc] initWithTitle:@"Populate" style:UIBarButtonItemStylePlain target:self action:@selector(populateDataSource)];
}
return self;
}
- (void)populateDataSource
{
NSMutableArray* new_rows = [[NSMutableArray alloc] init];
[((MyTableViewDataSource*)self.tableView.dataSource) setRowCount:200];
for (int i = 0; i < 200; i ++)
[new_rows addObject:[NSIndexPath indexPathForRow:i inSection:0]];
[self.tableView beginUpdates];
[self.tableView insertRowsAtIndexPaths:new_rows withRowAnimation:UITableViewRowAnimationAutomatic];
[self.tableView endUpdates];
}
- (void)viewDidLoad
{
[super viewDidLoad];
self.tableView.dataSource = [[MyTableViewDataSource alloc] init];
self.navigationItem.rightBarButtonItem = populateButtonItem;
}
@end