菜鸟教程小白 发表于 2022-12-12 10:36:49

ios - 像在 native 相机应用程序中一样在方向更改时旋转按钮


                                            <p><p>有谁知道我如何让按钮在旋转更改时<strong>就地</strong>旋转,就像它们在 nativeiPhone 应用中旋转一样?</p>

<p>我正在为 iOS 6 及更高版本进行开发,因此我正在使用 <code>shouldAutorotate</code> 等方法。</p>

<p>我尝试返回 <code>YES</code> 然后更改框架,但这使图标“移动”,而不是原地旋转。我想过返回 <code>NO</code> 并制作自定义 <code>UIView</code> 动画,但我不确定如何获取有关当前和即将到来的方向的数据。</p>

<p>有什么想法吗?</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>您应该使用 CGAffineTransformation 旋转按钮,而不是仅仅改变框架。</p>

<pre><code>self.myButton.transform = CGAffineTransformMakeRotation(someRadians);
</code></pre>

<p> <a href="http://iphonedevsdk.com/forum/iphone-sdk-development/61080-cgaffinetransformmakerotation-changes-height-and-width-of-image.html" rel="noreferrer noopener nofollow">http://iphonedevsdk.com/forum/iphone-sdk-development/61080-cgaffinetransformmakerotation-changes-height-and-width-of-image.html</a> </p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 像在 native 相机应用程序中一样在方向更改时旋转按钮,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/16063687/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/16063687/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 像在 native 相机应用程序中一样在方向更改时旋转按钮