图片就是这样的。再重复一下问题:例如我要在上述全屏的背景上的 M U R P 和 访问官方网站五个地方放置五个按钮,要求适配各种型号手机。
我是这样解决的(StoryBoard):
首先:在storyBoard里面拖4个ViewController,分别设置screen size 为3.5、 4.0、 4.7、 5.5的尺寸。
然后把背景图片分别设置上去,在固定的地方放置固定的按钮。
(本文来源于图老师网站,更多请访问http://m.tulaoshi.com/bianchengyuyan/)然后在使用的时候通过判断不同的屏幕尺寸,来加载不同的storyBoard,代码如下:(swift)。
代码如下:
let screenHeight = UIScreen.mainScreen().bounds.size.height
var storyBoards:UIStoryboard = UIStoryboard(name: "Main", bundle: nil) as UIStoryboard
if (screenHeight = . ) {
viewCon = storyBoards.instantiateViewControllerWithIdentifier("First . ") as! FirstViewController
}else if (screenHeight = . ) {
viewCon = storyBoards.instantiateViewControllerWithIdentifier("First . ") as! FirstViewController
}else if (screenHeight = . ) {
viewCon = storyBoards.instantiateViewControllerWithIdentifier("First . ") as! FirstViewController
}else if (screenHeight = . ) {
viewCon = storyBoards.instantiateViewControllerWithIdentifier("First . ") as! FirstViewController
}
var naviCon:MainNavigationController = MainNavigationController(rootViewController:viewCon)
以上内容就是为按钮位置配置不同的IOS背景的介绍,希望大家喜欢。