首页 > 代码库 > View 非中心点旋转
View 非中心点旋转
设置view的calayer的锚点
view.layer.anchorPoint = CGPointMake(0, 0);
动画
view.layer.transform = CATransform3DRotate(view.layer.transform, 180.0 * M_PI / 180.0, 0.0f, 0.0f, 1.0f);
view.layer.transform = CATransform3DMakeRotation(角度数 * M_PI / 180.0, 0.0f, 0.0f, 1.0f);
最多旋转 180 度 .
view.layer.anchorPoint = CGPointMake(0, 0);
当Point 为 ( 0 , 0 ) 是 按照 view的右上角的点旋转
(1, 1 ) 时 按照view 左下角的点 旋转
当 179.0 * M_PI / 180.0 角度数大于 180 时 , 向下旋转 , 小于 18 0 时 向上旋转 .
View 非中心点旋转
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。