| 123456789101112131415161718192021 |
- //
- // UIView+FWAnimation.h
- // BuguLive
- //
- // Created by xfg on 2017/5/3.
- // Copyright © 2017年 xfg. All rights reserved.
- //
- //#import <ftanim>
- #import "FTAnimationManager.h"
- #import "NSObject+CommonBlock.h"
- /**
- This category provides extra methods on `UIView` which make it very easy to use
- the FTAnimationManager pre-built animations.
- */
- @interface UIView (FWAnimation)
- - (void)animation:(CommonBlock)animationBlock duration:(NSTimeInterval)duration completion:(CommonBlock)block;
- @end
|