UITableView Delegate Not Found In Documentation
I couldn't find this method in the UITableView delegate documentation....can you tell me where I would look for the documentation for this met开发者_运维百科hod?
- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath
Thanks!
That's a method of UITableViewDataSource
(since it invokes a modification of your data).
精彩评论