菜鸟教程小白 发表于 2022-12-13 06:05:52

ios - 在 iPhone 中,键盘以纵向模式出现,而不是横向模式。有什么解决办法吗?


                                            <p><p>当我将单个 View 旋转为横向时,我的键盘以纵向模式显示。</p>

<p>-(void)viewWillAppear:(BOOL)动画
{
CGAffineTransform newTransform = CGAffineTransformMake(0.0,1.0,-1.0,0.0,0.0,0.0);<br/>
self.view.transform = newTransform;</p>

<p>}</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>如果您希望单个 ViewController 仅支持横向,您应该通过实现“Apple 方式”来实现 </p>

<pre><code>-(NSUInteger)supportedInterfaceOrientations
</code></pre>

<p>请记住在您的 plist 文件中将“基于 Controller 的状态栏外观”设置为 YES</p>

<p>查看此链接了解更多详情 - <a href="https://developer.apple.com/library/ios/featuredarticles/ViewControllerPGforiPhoneOS/RespondingtoDeviceOrientationChanges/RespondingtoDeviceOrientationChanges.html" rel="noreferrer noopener nofollow">Supporting Multiple Interface Orientations</a> </p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 在 iPhone 中,键盘以纵向模式出现,而不是横向模式。有什么解决办法吗?,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/29278024/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/29278024/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 在 iPhone 中,键盘以纵向模式出现,而不是横向模式。有什么解决办法吗?