但是,当我们想要在后台运行一些重码而不会消失直到这些 *** 作没有完成时,实现启动画面的最佳方法是什么?一些代码,如从互联网下载应用程序配置和保存主题,常用于启动画面.
解决方法 顺便说一句,还有另一个解决方案:创建主UIVIEwController,立即在AppDelegate的FinishedLaunching方法中将其设置为Window.RootVIEwController.然后通过以下代码创建并显示modally splashVIEwController:... MainVIEwController.PresentModalVIEwController(splashVIEwController,true); ...
通过调用代码可以隐藏模态UIVIEwController:
dismissModalVIEwControllerAnimated(true);
请注意,由于iOS 6 PresentModalVIEwController成为不推荐使用的方法.因此,对于许多iOS版本兼容性,您可以编写显示模式UIVIEwController的特殊方法.
public voID ShowModalVIEwController (UIVIEwController vc,bool animated) { if (UIDevice.CurrentDevice.CheckSystemVersion(6,0)) { MainVIEwController.PresentVIEwController(vc,animated,null); } else { MainVIEwController.PresentModalVIEwController(vc,animated); } }总结
以上是内存溢出为你收集整理的ios – 带有重码的单色触摸屏全部内容,希望文章能够帮你解决ios – 带有重码的单色触摸屏所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)