UITableViewRowAnimationBottom

UITableViewRowAnimationBottom

我在这里遇到了一个非常类似的问题:https://stackoverflow.com/questions/3160796/inserting-row-to-end-of-table-with-uitableviewrowanimationbottom-doesnt-animate,尽管没有给出答案。他的代码也和我的代码有些不同。

我有一个非常简单的示例,它是从Navigation应用程序模板构建的。

NSMutableArray *items;

- (void)viewDidLoad {
    [super viewDidLoad];
    items = [[NSMutableArray array] retain];
    self.navigationItem.rightBarButtonItem = [[[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemAdd target:self action:@selector(addItem)] autorelease];
}

- (void)addItem{
    [items insertObject:@"new" atIndex:0];
    [self.tableView insertRowsAtIndexPaths:[NSArray arrayWithObject:[NSIndexPath indexPathForRow:0 inSection:0]] withRowAnimation:UITableViewRowAnimationBottom];
}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
    return items.count;
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {

    static NSString *CellIdentifier = @"Cell";

    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
    if (cell == nil) {
        cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];
    }

    cell.textLabel.text = [items objectAtIndex:indexPath.row];

    return cell;
}

- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath {

    if (editingStyle == UITableViewCellEditingStyleDelete) {
        [items removeObjectAtIndex:indexPath.row];
        [tableView deleteRowsAtIndexPaths:[NSArray arrayWithObject:indexPath] withRowAnimation:UITableViewRowAnimationBottom];
    }
}

问题是,当我插入或删除表中的最后一行时,动画根本不起作用。该行只是立即出现或消失。这仅在UITableViewRowAnimationBottom中发生,但这是通过这种方式创建或删除表格单元格最有意义的动画。这是Apple框架中的错误吗?还是故意这样做?在计数中添加一个额外的单元格,然后设置此单元格使其看起来根本不存在,只是为了解决此问题,这是否有意义?

最佳答案

也许,使用UITableViewRowAnimationBottom,将按原样添加新单元格,而不添加动画,并且其下方的所有行均会滑动滑动。因此,如果下面没有任何行,那么将没有动画。

关于iphone - UITableViewRowAnimationBottom对最后一行不起作用,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/4512922/

10-10 04:16