UIView+FWAnimation.h 499 B

123456789101112131415161718192021
  1. //
  2. // UIView+FWAnimation.h
  3. // BuguLive
  4. //
  5. // Created by xfg on 2017/5/3.
  6. // Copyright © 2017年 xfg. All rights reserved.
  7. //
  8. //#import <ftanim>
  9. #import "FTAnimationManager.h"
  10. #import "NSObject+CommonBlock.h"
  11. /**
  12. This category provides extra methods on `UIView` which make it very easy to use
  13. the FTAnimationManager pre-built animations.
  14. */
  15. @interface UIView (FWAnimation)
  16. - (void)animation:(CommonBlock)animationBlock duration:(NSTimeInterval)duration completion:(CommonBlock)block;
  17. @end