如何自动将我的视图控制器推送到另一个视图控制器?我在 viewWillApear 中得到了这段代码,当我的 Tabledata 包含 1 个项目时,它需要将它直接推送到另一个视图控制器,但它不起作用
if ([DatainTable count] == 1) {
count.text = [NSString stringWithFormat:@"xxx"];
xViewController *scoreView = [[xViewController alloc]initWithNibName:@"xViewController" bundle:nil];
[scoreView.count setText:count.text];
[self.navigationController pushViewController:scoreView animated:YES];
}
我尝试了很多其他的东西,但没有成功