提交 f424eed8 authored 作者: jungleiOS's avatar jungleiOS

更新使用文档

上级 423e53e2
...@@ -16,7 +16,7 @@ samples, guidance on mobile development, and a full API reference. ...@@ -16,7 +16,7 @@ samples, guidance on mobile development, and a full API reference.
## ios 16 旋转 ## ios 16 旋转
若想在 iOS 16 上强制旋转生效 若想在 iOS 16 上强制旋转生效
1. 保证 info.plist 表里 Supported interface orientations 不要四个方向都勾上 1. 在Xcode中,选中General> Targets下的“Requires Full Screen”复选框,
2. 请在 AppDelegate 中加入如下代码,允许所有旋转方向 2. 请在 AppDelegate 中加入如下代码,允许所有旋转方向
```js ```js
......
...@@ -32,6 +32,8 @@ ...@@ -32,6 +32,8 @@
<string>LaunchScreen</string> <string>LaunchScreen</string>
<key>UIMainStoryboardFile</key> <key>UIMainStoryboardFile</key>
<string>Main</string> <string>Main</string>
<key>UIRequiresFullScreen</key>
<true/>
<key>UISupportedInterfaceOrientations</key> <key>UISupportedInterfaceOrientations</key>
<array> <array>
<string>UIInterfaceOrientationLandscapeLeft</string> <string>UIInterfaceOrientationLandscapeLeft</string>
......
...@@ -19,7 +19,7 @@ ...@@ -19,7 +19,7 @@
- (void)hook_forceOrientation:(NSString *)orientation { - (void)hook_forceOrientation:(NSString *)orientation {
// 若想在 iOS 16 上强制旋转生效 // 若想在 iOS 16 上强制旋转生效
// 1.请在 AppDelegate 中加入如下代码,允许所有旋转方向 // 1.请在 AppDelegate 中加入如下代码,允许所有旋转方向
// 2.info.plist 表里 Supported interface orientations 不要四个方向都勾上 // 2.在Xcode中,选中General> Targets下的“Requires Full Screen”复选框,
// - (UIInterfaceOrientationMask)application:(UIApplication *)application supportedInterfaceOrientationsForWindow:(UIWindow *)window { // - (UIInterfaceOrientationMask)application:(UIApplication *)application supportedInterfaceOrientationsForWindow:(UIWindow *)window {
// //
// return UIInterfaceOrientationMaskAll; // return UIInterfaceOrientationMaskAll;
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论