我一直在互联网上寻找解决此问题的方法,但找不到我能理解的方法。就这样吧。我有我的 iOS 应用程序,在第一次启动应用程序时,它会显示一个 UIAlertView。我想要其中一个按钮将用户发送到新的 viewController 以查看一些基本信息。
我已经正确配置了 UIAlertView,这是 actionSheet 的代码:
- (void)alertView:(UIAlertView *)actionSheet clickedButtonAtIndex:(NSInteger)buttonIndex {
if (buttonIndex == 0)
{
//Code to open a new viewController???
}
if (buttonIndex == 1)
{
//User can exit the application if they do not wish to continue
exit(0); }
}
}
我创建了一个名为 webViewViewController 的 viewController,这就是我希望用户在点击第一个按钮时达到的内容。关于如何做到这一点的任何想法?我禁用了 ARC,我遇到的其他“解决方案”不断给我错误。
谢谢大家,希望能得到一些指导。