码迷,mamicode.com
首页 > 移动开发 > 详细

iOS 6.0中UIViewController被弃用的一些方法

时间:2015-06-08 13:24:40      阅读:193      评论:0      收藏:0      [点我收藏+]

标签:ios开发   ios8编程   uiviewcontroller   presentmodalviewcont   deprecated   

郝萌主倾心贡献,尊重作者的劳动成果,请勿转载。

如果文章对您有所帮助,欢迎给作者捐赠,支持郝萌主,捐赠数额随意,重在心意^_^ 

我要捐赠: 点击捐赠

Cocos2d-X源码下载:点我传送


概念:deprecated 弃用。表示已不被建议使用,可能随时取消它;建议采用新的来替代。

"modalViewController" 属性 is deprecated : first deprecated in iOS 6.0

而采用

presentedViewController

 

"dismissModalViewControllerAnimated" is deprecated : first deprecated in iOS 6.0

而采用

dismissViewControllerAnimated:(BOOL) completion:^(void)completion

如:[self dismissViewControllerAnimated:YES completion:nil];

 

"presentModalViewController: animated:" is deprecated : first deprecated in iOS 6.0

而采用

presentViewController:(UIViewController *) animated:(BOOL) completion:^(void)completion

如:[self.viewController presentViewController:controller animated:YES completion:nil];

 

"automaticallyForwardAppearanceAndRotationMethodsToChildViewControllers" is deprecated : first deprecated in iOS 6.0

而采用

shouldAutomaticallyForwardRotationMethods 和 shouldAutomaticallyForwardAppearanceMethods

 

"shouldAutorotateToInterfaceOrientation:" is deprecated : first deprecated in iOS 6.0

而采用

重载 supportedInterfaceOrientationspreferredInterfaceOrientationForPresentation 方法

 

 "viewDidUnload"和"viewWillUnload" 在iOS 6.0从不调用。


郝萌主倾心贡献,尊重作者的劳动成果,请勿转载。

如果文章对您有所帮助,欢迎给作者捐赠,支持郝萌主,捐赠数额随意,重在心意^_^ 

我要捐赠: 点击捐赠

Cocos2d-X源码下载:点我传送

iOS 6.0中UIViewController被弃用的一些方法

标签:ios开发   ios8编程   uiviewcontroller   presentmodalviewcont   deprecated   

原文地址:http://blog.csdn.net/haomengzhu/article/details/46411135

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!