我设置CATextLayer
的框架一切正常,但是当我将文字图层旋转90度时,它会在视频裁剪后失去位置。
这是我设置textview的位置时:
CGFloat radians = atan2f(_userResizableView2.transform.b, _userResizableView2.transform.a);
CGFloat flip=((UITextView*)_userResizableView2.contentView).transform.a;
CGFloat degrees = radians * (180 / M_PI);
float radiansToRotate = DEGREES_TO_RADIANS( -degrees );
CATransform3D zRotation;
zRotation = CATransform3DMakeRotation(radiansToRotate,0, 0, 1.0);
titleLayer.transform = CATransform3DScale(zRotation,flip, 1, 1);