Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
- {
- AddPalletViewController * addPalletViewController = [self addPalletViewControllerInstance];
- [addPalletViewController setEditMode:true];
- [addPalletViewController setEditModeRowValue: [[self.datasource objectAtIndex: indexPath.section] objectAtIndex: [[[self.sectionArray objectAtIndex:indexPath.section] objectAtIndex:indexPath.row+1]intValue]]];
- [[self navigationController] pushViewController: addPalletViewController animated:YES];
- }
Advertisement
Add Comment
Please, Sign In to add comment