UIView+Additions.h 367 B

1234567891011121314151617181920
  1. //
  2. // UIView+Additions.h
  3. // kneet2
  4. //
  5. // Created by Jason Lee on 10/2/15.
  6. // Copyright © 2015 ntels. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface UIView (Additions)
  10. @property (assign, nonatomic) CGFloat x;
  11. @property (assign, nonatomic) CGFloat y;
  12. @property (assign, nonatomic) CGFloat width;
  13. @property (assign, nonatomic) CGFloat height;
  14. @end