CATransform3D没有透视

时间:2014-07-05 11:00:57

标签: ios objective-c cgaffinetransform catransform3d

我以前做过这个,但我不知道怎么做不到这个。我用Google搜索了一下,但我找到的答案都没有解决。

我只是想在我的self.view中添加一个小视图,并希望在y轴上以透视方式旋转这个添加的子视图。

以下是代码:

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];

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

我甚至尝试过设置zPositionanchorPoint但没有帮助。

我有一种感觉,我只是错过了一些非常简单的事情。我以前做过的事情已经脱离了我的脑海。

1 个答案:

答案 0 :(得分:2)

您正在使用旋转变换

覆盖具有透视的变换
// 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);