自动旋转不起作用 iOS 9 & xcode 7

AutoRotate does not work iOS 9 & xcode 7

我已经停止自动 rotation.But 现在我想启用自动旋转。我没有启用它。如何使用 info.plist ios 9 & xcode 7.Please 帮助我启用自动旋转。

转到 Project Target -> General -> Deployment info 并标记检查您要包含在应用中的所有方向

打开您的 info.plist 作为源代码。删除现有条目并添加这些条目。

<key>UISupportedInterfaceOrientations</key>
<array>
    <string>UIInterfaceOrientationPortrait</string>
    <string>UIInterfaceOrientationLandscapeLeft</string>
    <string>UIInterfaceOrientationLandscapeRight</string>
</array>
<key>UISupportedInterfaceOrientations~ipad</key>
<array>
    <string>UIInterfaceOrientationPortrait</string>
    <string>UIInterfaceOrientationPortraitUpsideDown</string>
    <string>UIInterfaceOrientationLandscapeLeft</string>
    <string>UIInterfaceOrientationLandscapeRight</string>
</array>