UIView+AnimationProperty.h 381 B

1234567891011121314151617181920212223
  1. //
  2. // UIView+AnimationProperty.h
  3. // AlertViewDemo
  4. //
  5. // Created by YouXianMing on 15/10/15.
  6. // Copyright © 2015年 ZiPeiYi. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface UIView (AnimationProperty)
  10. /**
  11. * CGAffineTransformMakeScale
  12. */
  13. @property (nonatomic) CGFloat scale;
  14. /**
  15. * CGAffineTransformMakeRotation
  16. */
  17. @property (nonatomic) CGFloat angle;
  18. @end