ios - CATransform3D 无透视

标签 ios objective-c cgaffinetransform catransform3d

我以前已经这样做过,但不知怎的,我没有让它发挥作用。我用谷歌搜索了一下,但我找到的答案都没有解决这个问题。

我只是想向我的 self.view 添加一个小 View ,并希望通过透视在 y 轴上旋转这个添加的 subview 。

这是代码:

UIView *rotatingView = [[UIView alloc] initWithFrame:(CGRect){{40.0f, 50.0f}, 50.0f, 50.0f}];
rotatingView.backgroundColor = [UIColor lightGrayColor];
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;
[self.view addSubview:rotatingView];

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

我什至尝试过设置 zPositionanchorPoint 但没有任何帮助。

我有一种感觉,我只是错过了一些非常简单的东西。我以前是怎么做的已经从我的脑海中消失了。

最佳答案

您正在用旋转变换覆盖具有透视效果的变换

// Define the "transform" 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);

您可能应该使用CATransform3DRotate来代替:

transform = CATransform3DRotate(transform, DEGREES_RADIANS(20.0f), 0.0f, 1.0f, 0.0f);

关于ios - CATransform3D 无透视,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24585717/

相关文章:

ios - 在 iOS 应用程序中使用 Facebook Graph Api 获取新闻提要

ios - 使用 UIView 动画和 CGAffineTransform 时会发生奇怪的行为

ios - 使用 openurl 时,应用程序设置包未显示在设置应用程序中

ios - 从应用商店更新后,应用程序因 SQLite 错误而崩溃

ios - Apple Watch Glance 将如何显示

iphone - 来自 NSString 的 NSDate,如 HH :mm

iphone - iOS成长动画CGAffineTransformMakeScale移动

ios - 与导航 Controller 的协议(protocol)

ios - UICollectionViewCell 上的 CGAffineTransform 没有给出预期的结果

iphone - 如何在执行拖动手势时平滑地为 CGAffineTransform 设置动画