Jesse Bunch
Jesse Bunch

Reputation: 6679

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 method?

- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath

Thanks!

Upvotes: 0

Views: 92

Answers (1)

Brian
Brian

Reputation: 15706

That's a method of UITableViewDataSource (since it invokes a modification of your data).

Upvotes: 2

Related Questions