iphone - 缩放和旋转形状(矩形)
<p><p>我希望从一点<strong>缩放和旋转形状(矩形)</strong>。</p>
<p>以MS Paint为例。</p>
<p>这将是什么方法?</p>
<p>有可能吗?</p>
<p>提前致谢。</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>为此使用 CGAffineTransform。 </p>
<p><strong>轮换:</strong></p>
<pre><code>myView.layer.transform = CGAffineTransformRotate(theView.transform, degreesToRadians(45));
</code></pre>
<p><strong>缩放:</strong></p>
<pre><code>myView.layer.transform = CGAffineTransformScale(theView.transform, 2.0, 2.0);
</code></pre>
<p><em><strong>默认情况下,它会从中心缩放/旋转。</strong></em></p>
<p>对于任何需要设置 anchor 的点。见例子:-</p>
<pre><code>myView.layer.anchorPoint = CGPointMake(0, 0);
</code></pre></p>
<p style="font-size: 20px;">关于iphone - 缩放和旋转形状(矩形),我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/6798511/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/6798511/
</a>
</p>
页:
[1]