xcode 不推荐使用dismissModalViewControllerAnimated
声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow
原文地址: http://stackoverflow.com/questions/19034136/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me):
StackOverFlow
提示:将鼠标放在中文语句上可以显示对应的英文。显示中英文
时间:2020-09-15 03:56:06 来源:igfitidea点击:
dismissModalViewControllerAnimated is deprecated
提问by Benjamin Porter
I am in the middle of trying to convert this app so I can use it in Xcode 5 and iOS7, it is saying dismissModalViewControllerAnimated is deprecated.
我正在尝试转换这个应用程序,以便我可以在 Xcode 5 和 iOS7 中使用它,它说不推荐使用dismissModalViewControllerAnimated。
[self.navController dismissModalViewControllerAnimated:YES];
Any suggestions?
有什么建议?
回答by Abdullah Shafique
Try:
尝试:
[self dismissViewControllerAnimated:YES completion:nil];
回答by Hemant Chittora
The new method is:
新方法是:
[self.navController dismissViewControllerAnimated:NO
completion:nil];
The word modal has been removed
模态这个词已被删除