菜鸟教程小白 发表于 2022-12-12 10:40:16

ios - CATransform3D 无透视


                                            <p><p>我以前做过这个,但不知何故我没有让它工作。我用谷歌搜索了一下,但我找到的答案都没有解决它。</p>

<p>我只是想在我的 <code>self.view</code> 中添加一个小 View ,并希望通过透视图在其 y 轴上旋转这个添加的 subview 。</p>

<p>代码如下:</p>

<pre><code>UIView *rotatingView = [ initWithFrame:(CGRect){{40.0f, 50.0f}, 50.0f, 50.0f}];
rotatingView.backgroundColor = ;
CATransform3D transform = CATransform3DIdentity;
transform.m34 = 1.0 / -500.0;

transform = CATransform3DMakeRotation(DEGREES_RADIANS(20.0f), 0.0f, 1.0f, 0.0f);
rotatingView.layer.transform = transform;
;
</code></pre>

<p>这很简单。但绝对没有任何观点。我希望看到一个“倾斜”的 View ,以便它给出它在 y 轴上旋转的透视图,但无济于事。</p>

<p>我什至尝试设置 <code>zPosition</code> 和 <code>anchorPoint</code> 但没有任何帮助。</p>

<p>我有一种感觉,我只是缺少一些非常简单的东西。我以前是怎么做的已经不在我的脑海里了。</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>您正在用旋转变换覆盖具有透视的变换</p>

<pre><code>// Define the &#34;transform&#34; variable here
CATransform3D transform = CATransform3DIdentity;
transform.m34 = 1.0 / -500.0;

// assign a new transform to it here
transform = CATransform3DMakeRotation(DEGREES_RADIANS(20.0f), 0.0f, 1.0f, 0.0f);
</code></pre>

<p>您可能应该使用 <code>CATransform3DRotate</code> 代替:</p>

<pre><code>transform = CATransform3DRotate(transform, DEGREES_RADIANS(20.0f), 0.0f, 1.0f, 0.0f);
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - CATransform3D 无透视,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/24585717/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/24585717/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - CATransform3D 无透视