Advertisement
Guest User

Untitled

a guest
Jul 22nd, 2014
218
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. - (BOOL)tableView:(UITableView *)tableView canMoveRowAtIndexPath:(NSIndexPath *)indexPath {
  2. if (indexPath.section == 1) {
  3. return NO;
  4. }
  5. else {
  6. return YES;
  7. }
  8.  
  9. - (BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath {
  10. if (indexPath.section == 1) {
  11. return NO;
  12. }
  13. else {
  14. return YES;
  15. }
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement