您的位置:首页 > 移动开发 > IOS开发

ios facebook 开源动画 pop 常用动画

2015-12-19 14:55 537 查看
图形变换

POPSpringAnimation *springAnimation = [POPSpringAnimation
animation];
springAnimation.property = [POPAnimatableProperty
propertyWithName:kPOPViewCenter];
springAnimation.toValue = [NSValue
valueWithCGPoint:CGPointMake(300,
400)];
springAnimation.velocity = [NSValue
valueWithCGPoint:CGPointMake(300,
1000000)];
//转角


[view pop_addAnimation:springAnimation
forKey:@"center"];
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: