测试的8.0以上的好几台设备不会去响应editActionsForRowAtIndexPath方法
测试的时候只是设置了canEditRowAtIndexPath 返回值为YES
修改方式:
- (UITableViewCellEditingStyle)tableView:(UITableView*)tableView editingStyleForRowAtIndexPath:(NSIndexPath*)indexPath
{
returnUITableViewCellEditingStyleDelete;//删除cell
}
- (void)tableView:(UITableView*)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath*)indexPath
{
if(editingStyle ==UITableViewCellEditingStyleDelete) {
}
}
这两个方法加上去就可以响应了
网友评论