I am trying to pass data from one UITableViewController to another. This is my code in the initial view controller:
UITableViewController
- (void)tableView:(UITableVi
Implement prepareForSegue and pass date in this methos
- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender { if([seque.identifier isEqualToString:@"showDetail"]) { ListsViewController *lists = seque.destinationViewController; lists.subject = subject; } }