gpt4 book ai didi

iphone - CATransform3D 旋转导致一半图像消失

转载 作者:行者123 更新时间:2023-12-03 18:19:48 24 4
gpt4 key购买 nike

我使用以下代码来旋转图像,但已旋转到页面“之外”的图像的一半(沿 y 轴向下)消失了。怎么修? 标题以弧度为单位。

    CALayer *layer = myUIImageView.layer;
CATransform3D rotationAndPerspectiveTransform = CATransform3DIdentity;
rotationAndPerspectiveTransform.m34 = 1.0 / 500;
rotationAndPerspectiveTransform = CATransform3DRotate(rotationAndPerspectiveTransform, heading, 0.0f, 1.0f, 0.0f);
layer.transform = rotationAndPerspectiveTransform;

最佳答案

解决方案是适当设置所有图层的 zPosition 属性。感谢 @Brad Larson,他在评论 here 中建议了这个解决方案。看来,当您开始使用 CATransform3D 时,由 addsubview 建立的正常 zindex View 层次结构将被抛出窗口。

关于iphone - CATransform3D 旋转导致一半图像消失,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5049187/

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