只要你有一台电脑或者手机,都能关注图老师为大家精心推荐的为按钮位置配置不同的IOS背景,手机电脑控们准备好了吗?一起看过来吧!
【 tulaoshi.com - 编程语言 】
面对全屏的背景图片,要在固定的位置放置多个按钮的问题我的解决办法,具体如下:
图片就是这样的。再重复一下问题:例如我要在上述全屏的背景上的 M U R P 和 访问官方网站五个地方放置五个按钮,要求适配各种型号手机。
我是这样解决的(StoryBoard):
首先:在storyBoard里面拖4个ViewController,分别设置screen size 为3.5、 4.0、 4.7、 5.5的尺寸。
(本文来源于图老师网站,更多请访问http://www.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背景的介绍,希望大家喜欢。
来源:http://www.tulaoshi.com/n/20160219/1597881.html
看过《为按钮位置配置不同的IOS背景》的人还看了以下文章 更多>>