菜鸟教程小白 发表于 2022-12-12 20:50:52

ios - 如何在 iOS 7 中转换 UIAlertView?


                                            <p><p>我有一个肖像应用程序,使用图像 Controller 拍照,但我指示用户在风景中拍照,效果很好,但是当照片根据我的应用程序不正确时,它会发出警报正确拍摄另一张照片,这里 UIAlertView 是纵向的,看起来完全不正常,所以我尝试转换我的 UIAlertView 不起作用,在下面找到我的代码来转换 <code>UIAlertView</code></p >

<pre><code> alertView.transform=CGAffineTransformMakeRotation(M_PI_2);
</code></pre>

<p>此应用程序在 iOS 7 中运行</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>如果你想通过变换来伪造旋转,请在 AlertView 的窗口上做。 </p>

<pre><code>alertView.window.transform = CGAffineTransformMakeRotation(M_PI_2);
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 如何在 iOS 7 中转换 UIAlertView?,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/22657264/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/22657264/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 如何在 iOS 7 中转换 UIAlertView?