iOS 7: UITableViewController: Changing/Replacing Delete Button

后端 未结 3 1368
春和景丽
春和景丽 2021-01-03 08:12

Disclaimer: I know it\'s not a best practice to tweak that kind of stuff because it may break as Apple decides to change its internal behaviour.

There are s

3条回答
  •  误落风尘
    2021-01-03 08:40

    Not sure if this works on ios 7 but take a look:

    (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath
    {
    
      if (editingStyle == UITableViewCellEditingStyleDelete)
    
       {
    
        //   Your Code
    
        }
    }
    

提交回复
热议问题