| 1234567891011121314151617181920 |
- //
- // UIView+Additions.h
- // kneet2
- //
- // Created by Jason Lee on 10/2/15.
- // Copyright © 2015 ntels. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @interface UIView (Additions)
- @property (assign, nonatomic) CGFloat x;
- @property (assign, nonatomic) CGFloat y;
- @property (assign, nonatomic) CGFloat width;
- @property (assign, nonatomic) CGFloat height;
- @end
|