Guest User

Untitled

a guest
Jun 21st, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. - (UITableViewCellEditingStyle)tableView:(UITableView *)tableView editingStyleForRowAtIndexPath:(NSIndexPath *)indexPath {
  2. if(indexPath.row == [tasksArray count])
  3. return UITableViewCellEditingStyleInsert;
  4. else
  5. return UITableViewCellEditingStyleDelete;
  6. }
Add Comment
Please, Sign In to add comment