本文主要是介绍iOS8与iOS7适配问题,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
今天遇到一个问题,在做背景图片的时候,我一般直接给屏幕的frame给UIImageView,可是今天在iOS8下和在7下完全不一样。
假设背景
同时给坐标:
viewWidth = self.view.frame.size.height;viewHeight = self.view.frame.size.width;
iOS8下
iOS 7
解决的办法只有一条
if ([[[UIDevice currentDevice] systemVersion] floatValue] >= 8.0) {viewWidth = self.view.frame.size.width;viewHeight = self.view.frame.size.height;}else {viewWidth = self.view.frame.size.height;viewHeight = self.view.frame.size.width;}
这样就解决了这个问题。
这篇关于iOS8与iOS7适配问题的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!