12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- //
- // UIView+ST.h
- // STPhotoBrowser
- //
- // Created by https://github.com/STShenZhaoliang/STPhotoBrowser.git on 16/1/15.
- // Copyright © 2016年 ST. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @interface UIView (ST)
- /**
- * 1.间隔X值
- */
- @property (nonatomic, assign) CGFloat x;
- /**
- * 2.间隔Y值
- */
- @property (nonatomic, assign) CGFloat y;
- /**
- * 3.宽度
- */
- @property (nonatomic, assign) CGFloat width;
- /**
- * 4.高度
- */
- @property (nonatomic, assign) CGFloat height;
- /**
- * 5.中心点X值
- */
- @property (nonatomic, assign) CGFloat centerX;
- /**
- * 6.中心点Y值
- */
- @property (nonatomic, assign) CGFloat centerY;
- /**
- * 7.尺寸大小
- */
- @property (nonatomic, assign) CGSize size;
- /**
- * 8.起始点
- */
- @property (nonatomic, assign) CGPoint origin;
- /**
- * 9.上 < Shortcut for frame.origin.y
- */
- @property (nonatomic) CGFloat top;
- /**
- * 10.下 < Shortcut for frame.origin.y + frame.size.height
- */
- @property (nonatomic) CGFloat bottom;
- /**
- * 11.左 < Shortcut for frame.origin.x.
- */
- @property (nonatomic) CGFloat left;
- /**
- * 12.右 < Shortcut for frame.origin.x + frame.size.width
- */
- @property (nonatomic) CGFloat right;
- /**
- * 13.设置镂空中间的视图
- *
- * @param centerFrame 中间镂空的框架
- */
- - (void)setHollowWithCenterFrame:(CGRect)centerFrame;
- /**
- * 14.获取屏幕图片
- * @return <#return value description#>
- */
- - (UIImage *)imageFromSelfView;
- @end
|