transform.rotation.x 围绕x轴翻转。y,z同理 参数:角度
transform.rotation 默认围绕z轴
transform.scale.x x方向缩放。y,z同理
transform.scale 所有方向缩放
transform.translation.x x轴方向移动,参数:x轴上的坐标。y,z同理
transform.translation 移动到的点
zPosition 平面的位置
opacity 透明度
backgroundColor 背景颜色 参数:颜色 (id)[[UIColor redColor] CGColor]
cornerRadius layer圆角
borderWidth 边框宽度
bounds 大小 参数:CGRect
contents 内容 参数:CGImage
contentsRect 可视内容 参数:CGRect 值是0~1之间的小数
position 位置,效果和transform.rotation差不多
shadowColor 阴影颜色
shadowOffset 阴影偏移
shadowOpacity 阴影透明度
shadowRadius 阴影角度
type 动画过渡类型
subtype 动画过渡方向
type的值 解读 对应常量
fade 淡入淡出 kCATransitionFade
push 推挤 kCATransitionPush
reveal 揭开 kCATransitionReveal
moveIn 覆盖 kCATransitionMoveIn
cube 立方体 私有API
suckEffect 吮吸 私有API
oglFlip 翻转 私有API
rippleEffect 波纹 私有API
pageCurl 反翻页 私有API
cameraIrisHollowOpen 开镜头 私有API
cameraIrisHollowClose 关镜头 私有API
私有API只能通过字符串使用
subtype的值 解读
kCATransitionFromRight 从右转场
kCATransitionFromLeft 从左转场
kCATransitionFromBottom 从下转场
kCATransitionFromTop 从上转场