1

您可能已经看到,当我们打开 Safari 浏览器并单击 Net Tab 时,图像被放置在曲面屏幕中。它列在顶级站点下。所以我的问题是我有一个 UIImageview,我需要像在 Safari 中一样使该图像视图弯曲。我怎样才能做到这一点?我可以使用 QuartzCore 吗?请帮忙..

4

1 回答 1

3

是的你可以。您只需要从 QuartzCore/QuartzCore.h 对 CATransform3D 进行研究。您将能够根据需要缩放/旋转/透视您的图像,为它们提供与 Safari 相同形式的站点视图。不幸的是,实施取决于您,这是一项艰巨的工作。

只是为了不让你“独自在黑暗中”,这里是一个图像的透视图:

UIView *myView = (UIView*)instance_to_your_UIImageView;
    CALayer *layer = myView.layer;
    CATransform3D rotationAndPerspectiveTransform = CATransform3DIdentity;
    rotationAndPerspectiveTransform.m14 = 1.0 / 500;
    rotationAndPerspectiveTransform = CATransform3DRotate(rotationAndPerspectiveTransform, 0.0f, 0.0f, 1.0f, 0.0f);
    layer.transform = rotationAndPerspectiveTransform;

下面是“之前”和“之后”:

前 后

干杯!

于 2012-07-18T09:04:43.093 回答