博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
iOS 6.0中UIViewController被弃用的一些方法
阅读量:6237 次
发布时间:2019-06-22

本文共 1216 字,大约阅读时间需要 4 分钟。

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

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

我要捐赠: 

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源代码下载:

你可能感兴趣的文章
微信 6.3.32 for Android发布 群收款微信群聊可以收钱
查看>>
微信开发:消息回复总结
查看>>
在 Web 项目中应用 Apache Shiro
查看>>
bash中不可以用字符串做数组下标
查看>>
Emeditor批量修改文件编码格式(UTF-8)
查看>>
coreseek 安装及使用方法详解
查看>>
[转]C# 使用Nlog记录日志到数据库
查看>>
chgrp命令
查看>>
Datamation Index
查看>>
iOS 指导文章
查看>>
AMQP协议学习
查看>>
jvm理论-常量池-string
查看>>
js array filter pop push shift unshift方法
查看>>
easyui 隔行渐变色属性设置
查看>>
ffmpeg解码RTSP/TCP视频流H.264(QT界面显示视频画面)
查看>>
pandas 的算术运算和数据对齐
查看>>
Java hashCode() equals()总结
查看>>
Mac OS X 恢复 VMware Fusion 虚拟机中的 vmdk 文件
查看>>
storm1.0节点间消息传递过久分析及调优
查看>>
PHPCMS V9 加密规则
查看>>