Guest User

Untitled

a guest
Aug 8th, 2015
177
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. -(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
  2. {
  3. AddPalletViewController * addPalletViewController = [self addPalletViewControllerInstance];
  4. [addPalletViewController setEditMode:true];
  5. [addPalletViewController setEditModeRowValue: [[self.datasource objectAtIndex: indexPath.section] objectAtIndex: [[[self.sectionArray objectAtIndex:indexPath.section] objectAtIndex:indexPath.row+1]intValue]]];
  6. [[self navigationController] pushViewController: addPalletViewController animated:YES];
  7. }
Advertisement
Add Comment
Please, Sign In to add comment