UITableViewRowAction代码未执行

时间:2015-04-07 08:31:05

标签: cocoa-touch ios8 xcode6

我正在尝试构建可滑动的桌面游戏。以下URL的代码正在运行 https://github.com/vanyas/ActionRowTest

但是当我在我的项目中实现类似的代码时,它并没有起作用。在我的代码中,以下代码段不起作用,这就是为什么我在刷卡后无法看到选项的原因。

UITableViewRowAction *actionRed =
[UITableViewRowAction rowActionWithStyle:UITableViewRowActionStyleNormal
 title:@"Delete"
 handler:^(UITableViewRowAction *action, NSIndexPath *indexPath)         
 [weakSelf.tasklist removeObjectAtIndex:indexPath.row];
 [weakSelf.tableView setEditing:YES animated:YES];
 [weakSelf.tableView deleteRowsAtIndexPaths:@[indexPath]                                       withRowAnimation:UITableViewRowAnimationAutomatic];         
 }];

我的代码的整个片段都可以在这里找到。 https://gist.github.com/reza-ryte-club/a3d59b0a3f6c391b831e

0 个答案:

没有答案