| 12345678910111213141516171819202122 |
- //
- // UIView+Extension.h
- // JLRefreshDemo
- //
- // Created by Jack on 2017/3/3.
- // Copyright © 2017年 mini1. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @interface UIView (JLExtension)
- #pragma mark - Frame
- @property (nonatomic,assign) CGFloat jl_x;
- @property (nonatomic,assign) CGFloat jl_y;
- @property (nonatomic,assign) CGFloat jl_height;
- @property (nonatomic,assign) CGFloat jl_width;
- @property (nonatomic,assign) CGFloat jl_right;
- @property (nonatomic,assign) CGFloat jl_bottom;
- @end
|