gpt4 book ai didi

ios - CATransform3D 让我的 UITextView 消失?

转载 作者:塔克拉玛干 更新时间:2023-11-02 21:15:19 31 4
gpt4 key购买 nike

所以我有一个 UITextView,它应该在视觉上位于屏幕的底部边缘,然后向上和向后拉伸(stretch)“进入”屏幕,“星球大战”以爬行方式打开。

经过多次谷歌搜索等,我觉得我的代码看起来像是适合这项工作的代码……但是这并没有设置我正在寻找的透视图,而是让 UITextView 完全消失了!

TextView 设置在带有 Spring /支柱(无自动布局)的 Storyboard 中,固定在主视图的顶部和底部,每侧约 20 像素,并且 Spring 在两个方向上都处于事件状态。它的导出连接到 self.infoTextView。如果我不对其应用任何转换,它就会如我所料地显示出来。

但是当我在 viewDidLoad 中触发下面的代码时, TextView 就完全消失了。我确定我遗漏了什么,但我似乎无法弄清楚它是什么。

CGRect frame = self.infoTextView.layer.frame;
self.infoTextView.layer.anchorPoint = CGPointMake(.5f, 1.0f);
self.infoTextView.layer.frame = frame;

CATransform3D rotationAndPerspectiveTransform = CATransform3DIdentity;
rotationAndPerspectiveTransform.m34 = 1.0 / 500;
rotationAndPerspectiveTransform = CATransform3DRotate(rotationAndPerspectiveTransform, 1.57, 0, 1, 0);
self.infoTextView.layer.transform = rotationAndPerspectiveTransform;

谢谢!

最佳答案

您需要在代码中修改两处:

  1. 旋转轴。您正在围绕 Y 轴旋转它。得到效果你需要将旋转变换更改为绕 X 轴转动。
  2. 要获得“星球大战开场爬行式”效果,您需要设置负角度或负视角。

此外,您可能希望设置更“强烈”的视角以获得更戏剧化的效果。

这是一个基于您的转换代码的示例:

CGFloat angle = -45;
CATransform3D rotationAndPerspectiveTransform = CATransform3DIdentity;
rotationAndPerspectiveTransform.m34 = 1.0 / 200;
rotationAndPerspectiveTransform = CATransform3DRotate(rotationAndPerspectiveTransform, angle / 180.0 * M_PI, 1, 0, 0);
self.infoTextView.layer.transform = rotationAndPerspectiveTransform;

关于ios - CATransform3D 让我的 UITextView 消失?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30408609/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com