当某个条件为真时,我希望我的应用程序在没有动画的情况下更改视图控制器。我目前使用的代码没有出现任何错误或问题,但似乎没有用。
.h文件
-(void)levelTwo;
.m文件
-(void)levelTwo
{
if (scoreNumber > 200) {
UIStoryboard *mainstoryboard = [UIStoryboard storyboardWithName:@"storyboard" bundle:Nil];
UIViewController *france = [mainstoryboard instantiateViewControllerWithIdentifier:@"france1"];
[self presentViewController:france animated:NO completion:nil];
}
}