0

我正在使用 UITableViewCell。

当用户被取消删除时,我想以编程方式将 UITableViewCell 的模式从删除更改为编辑。

请让我知道如何更改。

谢谢您的帮助。

这是尝试代码。

- (void)alertView:(UIAlertView *)alertView didDismissWithButtonIndex:(NSInteger)buttonIndex {

    UITableViewCell *aCell;
    aCell = [self tableView:gbl_tableView cellForRowAtIndexPath:gbl_indexPath];

    if (buttonIndex == 0){
        NSUInteger row = (NSUInteger) [gbl_indexPath row];
        [userListStr removeObjectAtIndex:row];
        [userImage removeObjectAtIndex:row];
        [gbl_tableView deleteRowsAtIndexPaths:[NSArray arrayWithObject:gbl_indexPath]
                             withRowAnimation:UITableViewRowAnimationAutomatic];
    }
    else if (buttonIndex == 1) {
        // When user canceled.  
        [aCell setEditing:NO animated:YES]; <==== ??? I can't know how.. This code don't work.

    }

}

在此处输入图像描述 从删除到编辑->在此处输入图像描述

4

2 回答 2

1

有可能aCell是null/nil吗?我相信从 UITableViewController 中提取单元格的正确方法是:

UITableViewCell *cell = [self.tableView cellForRowAtIndexPath:nowIndex];

在你的情况下,它会是

UITableViewCell *cell = [gbl_tableView cellForRowAtIndexPath: gbl_indexPath];
于 2012-09-28T18:31:10.713 回答
1

你试过这个方法吗?

- (UITableViewCellEditingStyle)tableView:(UITableView *)tableView  editingStyleForRowAtIndexPath:(NSIndexPath *)indexPath

你可以退货UITableViewCellEditingStyleNone

于 2012-09-28T18:32:46.030 回答