UITableViewTricks icon indicating copy to clipboard operation
UITableViewTricks copied to clipboard

pushViewController

Open bayfatih2000 opened this issue 13 years ago • 1 comments

When I select a cell on the table, it passes to second screen. However, the second screen comes with only a black page. Nothing (button, label...) is seen.

  • (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath { ViewController2 *view2 = [[ViewController2 alloc] init]; [self.navigationController pushViewController:view2 animated:YES]; }

What can I do ?

Thank you

bayfatih2000 avatar Apr 09 '13 08:04 bayfatih2000

Also, storyboard (from table cell to second view controller) is not working. I don't understand why?

bayfatih2000 avatar Apr 09 '13 09:04 bayfatih2000