Advertisement
Guest User

Untitled

a guest
Jun 22nd, 2017
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.  
  2. - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
  3. {
  4.     NSString *name = [self.array objectAtIndex: [indexPath row]];
  5.     id controller = [[NSClassFromString(name) alloc] initWithNibName: name bundle: nil];
  6.     [controller setTitle: name];
  7.     [self.navigationController pushViewController: controller animated:YES];
  8.     [controller release];
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement