试图将新控制器推入导航控制器,不知道为什么它不工作。1)我检查了 secondViewController 的实例也不起作用。2)。尝试后缀“.xib”,也不起作用。3)尝试过 bundle:nil 也不起作用。
我正在使用 ARC。有人可以指出这里有什么问题吗?
-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
NSLog(@" YOU SELECTED ROW ..");
secondViewController *secController = [[secondViewController alloc] initWithNibName:@"secondViewController.xib" bundle:[NSBundle mainBundle]];
NSLog (@"View Controller %@ ", secController);
[self.navigationController pushViewController:secController animated:YES];
}