// // CMView+CM.h // JustMeTalk // // Created by 陈民 on 2018/4/12. // Copyright © 2018年 陈民. All rights reserved. // #import @interface UIView (CM) //摆钟动画 - (void)rockViewAngle:(float)angle :(void(^)(BOOL finished))finishedBlock; //上下翻 - (void)overturnViewAngle:(float)angle; //左右翻 - (void)overturnViewAnimation:(float)duration :(void(^)(BOOL finished))finishedBlock ; //旋转 - (void)rotateViewCycle:(float)duration :(void(^)(BOOL finished))finishedBlock; @end