| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- //
- // NewUIViewFrmae.h
- // MingMen
- //
- // Created by 罗云飞 on 2017/3/9.
- // Copyright © 2017年 罗云飞. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- @interface UIView (ViewFrmae)
- /**
- * Shortcut for frame.origin.x.
- *
- * Sets frame.origin.x = left
- */
- @property (nonatomic) CGFloat left;
- /**
- * Shortcut for frame.origin.y
- *
- * Sets frame.origin.y = top
- */
- @property (nonatomic) CGFloat top;
- /**
- * Shortcut for frame.origin.x + frame.size.width
- *
- * Sets frame.origin.x = right - frame.size.width
- */
- @property (nonatomic) CGFloat right;
- /**
- * Shortcut for frame.origin.y + frame.size.height
- *
- * Sets frame.origin.y = bottom - frame.size.height
- */
- @property (nonatomic) CGFloat bottom;
- /**
- * Shortcut for frame.size.width
- *
- * Sets frame.size.width = width
- */
- @property (nonatomic) CGFloat width;
- /**
- * Shortcut for frame.size.height
- *
- * Sets frame.size.height = height
- */
- @property (nonatomic) CGFloat height;
- /**
- * Shortcut for center.x
- *
- * Sets center.x = centerX
- */
- @property (nonatomic) CGFloat centerX;
- /**
- * Shortcut for center.y
- *
- * Sets center.y = centerY
- */
- @property (nonatomic) CGFloat centerY;
- @end
|