代码之家  ›  专栏  ›  技术社区  ›  Haven Lin

图像沿y轴旋转

  •  1
  • Haven Lin  · 技术社区  · 11 年前

    enter image description here

    如何让图像沿着y轴旋转? 我试着使用这个代码,但它只是沿着图像的y轴旋转。

    imageView.layer.transform = CATransform3DConcat(imageView.layer.transform, CATransform3DMakeRotation(180,0.0,1.0,0.0));
    

    有人能解决我的问题吗?非常感谢。

    1 回复  |  直到 11 年前
        1
  •  1
  •   John    11 年前

    先平移(按图像宽度的一半),然后旋转。