Guest User

Untitled

a guest
Jan 22nd, 2019
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
  2. CookLesson *lesson = [lessons objectAtIndex:indexPath.row];
  3. DetailController *detailController = [[DetailController alloc] initWithNibName:"your-nib-name" bundle:nil];
  4. detailController.lesson = lesson;
  5. // push the controller on the nav stack, etc.
  6. }
Add Comment
Please, Sign In to add comment