UITableView(IOS)尝试删除但永远不会显示删除按钮

时间:2013-05-19 17:37:27

标签: iphone ios uitableview

我知道有很多像这样的问题,但是我跟着其中的几个问题,但没有一个能引导我找到答案。

可能这只是一些愚蠢的事情,我很遗憾,但我无法得到它......

所以我正在做的是,我有一个普通的UITableViewController。在表格中,我想显示用户通过我的应用程序下载的所有文件,并让他有机会删除文件。一切正常 - 我可以列出文件,点击后会打开另一个视图来显示文件。

但我永远无法删除某些内容。我刷了一切可能的方法,但我从来没有得到删除按钮!我已经实现了canEditRowAtIndexPath函数使其返回YES(尽管它不是必需的,我已经制作了大量的应用程序,我删除了行并且从不需要该函数):

- (BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath {
    return YES;
}

我的实际删除方法是这样实现的:

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

    if (editingStyle == UITableViewCellEditingStyleDelete) {
        NSError *error = [[NSError alloc] init];
        NSFileManager *fileManager = [NSFileManager defaultManager];
        NSString *fileName = [NSString stringWithFormat:@"%@/%@", directory, [files objectAtIndex:indexPath.row]];
        BOOL success = false;

        if ([fileManager isDeletableFileAtPath:fileName]) {
            success = [fileManager removeItemAtPath:fileName error:&error];
        }

        if (success) {
            [tableView deleteRowsAtIndexPaths:@[indexPath] withRowAnimation:UITableViewRowAnimationFade];
            [files removeObjectAtIndex:indexPath.row];
        } else {
            [Functions msg:NSLocalizedString(@"fileCantBeDeleted", @"") title:NSLocalizedString(@"fileError", @"") delegate:nil];
            if (error) {
                NSLog(@"Error: %@", [error localizedDescription]);
            }
        }
    }
}

为了完整,我也可以给你cellForRowAtIndexpath的代码:

- (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];
    }
    cell.textLabel.text = [files objectAtIndex:indexPath.row];
    return cell;
}

之前,在viewDidLoad方法中填充了NSArray“文件”,如下所示:

directory = [NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) objectAtIndex:0];
files = [[NSFileManager defaultManager] contentsOfDirectoryAtPath:directory error:nil];

目录和文件都是我班级的属性。 如上所述,整个类只是实现了一个UITableViewController。 我真的不明白为什么它不会让我删除一行,但可能它真的很蠢......我只是看不到它。

修改

发现错误。

这个特殊的TableView本身并没有实现PKRevealController库的任何方法,但它显然被设置为frontViewController - 所以碰巧有一个我不知道的手势。控制器也不打算在PKRevealController中使用......我只是以错误的方式添加它,所以我也没有意识到这一点!这也是我忘记将其包含在我的问题中的原因。

我在这里找到了解决方案:https://github.com/pkluz/PKRevealController/issues/123(因为如果其他人可能遇到此问题)。

非常感谢你帮助我!

修改

我刚学到的另一个可能的解决方案,如果你想使用tableView并在使用PKRevealController时仍然保持删除状态(不会对UIGestureRecognizers开始变得奇怪):你可以添加一个编辑按钮来触发视图进入编辑模式

self.navigationItem.rightBarButtonItem = self.editButtonItem;

这对我来说很有效。

2 个答案:

答案 0 :(得分:3)

使您的tableview可编辑

您需要创建表格视图的对象....

在ViewController的.h文件中。

UITableView *table;

在ViewController的.m文件中,您还需要设置tableview的编辑模式...

- (void)viewDidLoad{

table.editing=YES;

[super viewDidLoad];

}

希望这会对你有所帮助......

答案 1 :(得分:0)

您需要将"editingStyleForRowAtIndexPath" method添加到您的代理中:

- (UITableViewCellEditingStyle)tableView:(UITableView *)tableView editingStyleForRowAtIndexPath:(NSIndexPath *)indexPath
{
    return( UITableViewCellEditingStyleDelete );
}