我是目标 C 的新手,所以如果这是一个愚蠢的问题,请原谅我(我已经搜索过!)
我在 xcode (4.4.1) 中使用故事板,我有 2 个 UIViewControllers 我试图以编程方式在它们之间切换(不确定这是否是正确的术语?)
UIStoryboard *mainStoryboard = [UIStoryboard storyboardWithName:@"MainStoryboard" bundle:nil];
UIViewController *vc = [mainStoryboard instantiateViewControllerWithIdentifier:@"BookingView"];
[self presentModalViewController:vc animated:YES];
上面的代码稍后在我的项目中完美运行,但是当我尝试在第一个 UIViewController 的 viewdidload 方法中的 if() 中调用 if 时,它不起作用。请帮忙!