解决方法
是的,如果您使用的是导航控制器,则只需按下导航控制器即可:
[self.navigationController pushViewController:otherViewCon animated:YES];
或者,如果您想要模态转换:
[self presentModalViewController:otherViewCon animated:YES];
这都假设self是一个UIViewController.
要从故事板设计的视图控制器获取otherViewCon:
otherViewCon = [self.storyboard instantiateViewControllerWithIdentifier:@"Other View"];