美文网首页
iPad和iPhone横竖屏设置

iPad和iPhone横竖屏设置

作者: 0赌壹無贰0 | 来源:发表于2016-08-30 16:13 被阅读0次

    最近做了个支持iphone和ipad的小应用,被横竖屏切换搞得有点难受,这里做一下总结。

    1、在info.plist文件中做横竖屏的设置

    一般在info.plist文件中有这两个属性(Supported interface orientations)、(Supported interface orientations (iPad))

    这两个属性是设置横竖屏相关的,对应的是一个数组

    如果不想横屏,只设置一个item,设置为(Portrait (bottom home button))就好了,如果需要横屏,可以选择其他选项

    也可以转换为source code编辑,

    UISupportedInterfaceOrientations

    UIInterfaceOrientationPortrait

    UISupportedInterfaceOrientations~ipad

    UIInterfaceOrientationPortrait

    UIInterfaceOrientationPortraitUpsideDown

    2、重载ViewController的shouldAutorotateToInterfaceOrientation方法

    - (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation

    {

    // Return YES for supported orientations

    return ((interfaceOrientation ==UIDeviceOrientationPortrait)||(interfaceOrientation ==UIDeviceOrientationPortraitUpsideDown));

    }

    相关文章

      网友评论

          本文标题:iPad和iPhone横竖屏设置

          本文链接:https://www.haomeiwen.com/subject/ehafettx.html