作者热门文章
- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
我正在尝试编写一个 IBAction 来为我的 iPhone 应用程序切换 View Controller :
-(IBAction)changeToView2:(id)sender
{
if (self.view2 == nil)
{
view2 = [[UIViewController alloc] initWithNibName:@"View2Controller" bundle:[NSBundle mainBundle]];
}
self.modalTransitionStyle = UIModalTransitionStyleFlipHorizontal;
[self presentedViewController: view2 animated:YES];
}
但是,我收到一个构建错误,指出没有接口(interface)声明“presentedViewController:animated:”。为什么?
将其更改为“presentViewController:animated:”会产生相同的错误。
最佳答案
方法是presentViewController:animated:completion:
,不是present
edViewController:animated:
关于objective-c - 如何在 iOS 开发中切换新的 View Controller ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10388301/
我是一名优秀的程序员,十分优秀!