这些。当您Edit
和Delete
发出警报时,可在警报应用中看到。
答案 0 :(得分:1)
那些实际上不是自定义按钮。它们是委托方法的属性:- (UITableViewCellEditingStyle)tableView:(UITableView *)tableView editingStyleForRowAtIndexPath:(NSIndexPath *)indexPath
。如:
- (UITableViewCellEditingStyle)tableView:(UITableView *)tableView editingStyleForRowAtIndexPath:(NSIndexPath *)indexPath
{
return UITableViewCellEditingStyleDelete;
}
之后,您只需拨打[tableview setEditing:YES animated:YES];