- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我知道有很多这样的问题,但我已经关注了其中的几个问题,但没有一个能引导我找到答案。
可能这只是我遗漏的一些愚蠢而明显的东西,但我无法理解......
所以我正在做的是,我有一个普通的 UITableViewController。在表格中,我想显示用户通过我的应用程序下载的所有文件,并让他也有机会删除这些文件。一切正常 - 我可以列出文件,单击时会打开另一个 View 以显示文件。
但我永远无法删除某些内容。我刷了所有可能的方式,但我什至没有得到删除按钮!我已经实现了 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;
}
NSArray "files"已经被填充了,在 viewDidLoad 方法中是这样的:
directory = [NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) objectAtIndex:0];
files = [[NSFileManager defaultManager] contentsOfDirectoryAtPath:directory error:nil];
目录和文件都是我的类的属性。如前所述,整个类只是实现一个 UITableViewController。我真的不明白为什么它不允许我删除一行,但可能这真的很愚蠢……我就是看不出来。
编辑
发现错误。
这个特定的 TableView 本身并没有实现 PKRevealController 库的任何方法,但它显然被设置为 frontViewController - 所以那里碰巧有一个我不知道的手势。该 Controller 也不打算在 PKRevealController 中使用...我只是以错误的方式添加了它,所以我也不知道!这也是我忘记将其包含在我的问题中的原因。
我在这里找到了解决方案:https://github.com/pkluz/PKRevealController/issues/123 (如果其他人可能会遇到这个问题)。
无论如何,谢谢你帮助我!
编辑
如果你想使用 tableView 并且在使用 PKRevealController 时仍然继续删除东西(而不开始对 UIGestureRecognizers 感到陌生),我刚刚了解到另一种可能的解决方案:你可以只添加一个编辑按钮来触发 View 进入编辑模式.
self.navigationItem.rightBarButtonItem = self.editButtonItem;
这非常适合我。
最佳答案
您需要为您的 TableView 创建一个对象....
在 ViewController 的 .h 文件中。
UITableView *table;
在 ViewController 的 .m 文件中,您还需要设置 tableview 的编辑模式...
- (void)viewDidLoad{
table.editing=YES;
[super viewDidLoad];
}
希望对你有帮助......
关于iphone - UITableView (IOS) 试图删除但从未显示删除按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16637514/
背景 我最近在 merge 期间遇到了一个意外未 merge 的文档文件的问题。 无论出于何种原因,我搞砸了 merge 并有效地删除了文件(和其他几个文件),因为我忘记了它们的存在。 现在我想查看我
我在我的网站上使用旧的 mysql 版本和 php 版本 4。 我的表结构: | orders_status_history_id | orders_id | orders_status_id |
我是一名优秀的程序员,十分优秀!