最佳答案
我刚刚升级到 XCode 4.5,以便更新我的 iOS 应用程序,使其能够在 iPhone 5的4英寸显示屏上运行,但是我在线上收到一个构建错误,说 dismissModalViewControllerAnimated:' is deprecated
:
[self dismissModalViewControllerAnimated:NO];
我尝试使用一个完成处理程序(但是设置为 NULL)来更新推荐的重载,如下所示:
[self dismissModalViewControllerAnimated:NO completion:NULL];
但这句话出现了两个错误:
warning: 'TabBarController' may not respond to '-presentModalViewController:animated:completion:'
Instance method '-presentModalViewController:animated:completion:' not found (return type defaults to 'id')
谢谢!