1234567891011121314151617181920212223 |
- //
- // UIView+AnimationProperty.h
- // AlertViewDemo
- //
- // Created by YouXianMing on 15/10/15.
- // Copyright © 2015年 ZiPeiYi. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @interface UIView (AnimationProperty)
- /**
- * CGAffineTransformMakeScale
- */
- @property (nonatomic) CGFloat scale;
- /**
- * CGAffineTransformMakeRotation
- */
- @property (nonatomic) CGFloat angle;
- @end
|