面对全屏的背景图片,要在固定的位置放置多个按钮的问题我的解决办法,具体如下:

图片就是这样的。再重复一下问题:例如我要在上述全屏的背景上的 M U R P 和 访问官方网站五个地方放置五个按钮,要求适配各种型号手机。

我是这样解决的(StoryBoard):

首先:在storyBoard里面拖4个ViewController,分别设置screen size 为3.5、 4.0、 4.7、 5.5的尺寸。

然后把背景图片分别设置上去,在固定的地方放置固定的按钮。

然后在使用的时候通过判断不同的屏幕尺寸,来加载不同的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背景的介绍,希望大家喜欢。

声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。