我同时想要这两个功能,如附加屏幕截图所示。 同时在UITableView
。
我设置了self.myTable.editing = YES;
和
- (BOOL)tableView:(UITableView *)tableview canMoveRowAtIndexPath:(NSIndexPath *)indexPath
{
return YES;
}
和
- (BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath {
return YES;
}
但是我不能,我只能通过使用上面的代码来移动行。 我的问题是。
寻找帮助谁面对这个问题并完成这样的事情。 感谢。
答案 0 :(得分:0)
是的,您可以,您可能只是错过了以下方法:
斯威夫特3:
func tableView(_ tableView: UITableView, commit editingStyle: UITableViewCellEditingStyle, forRowAt indexPath: IndexPath)
目标C:
- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath;