Skip to content

Instantly share code, notes, and snippets.

@jonlambert
Created January 20, 2013 21:11
Show Gist options
  • Save jonlambert/4581817 to your computer and use it in GitHub Desktop.
Save jonlambert/4581817 to your computer and use it in GitHub Desktop.
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
// Navigation logic may go here. Create and push another view controller.
BookingPageViewController *bookingPageViewController = [[BookingPageViewController alloc] init];
bookingPageViewController.booking = [self.bookings objectAtIndex:indexPath.row];
[self.navigationController pushViewController:bookingPageViewController animated:YES];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment