frame访问、设置简化
看到一些程序都有这种写法,也不知道原创者是谁了。先在博客保存下。
在.m文件
#import "UIView+MyFrameCategory.h" @implementation UIView (MyFrameCategory) //================================= - (void)setX:(CGFloat)x; { CGRect tempFrame = self.frame; tempFrame.origin.x = x; self.frame = tempFrame; } - (CGFloat)x; { return self.frame.origin.x; } //================================= - (void)setY:(CGFloat)y; { CGRect tempFrame = self.frame; tempFrame.origin.y = y; self.frame = tempFrame; } - (CGFloat)y; { return self.frame.origin.y; } //================================= - (void)setWidth:(CGFloat)width; { CGRect tempFrame = self.frame; tempFrame.size.width = width; self.frame = tempFrame; } - (CGFloat)width; { return self.frame.size.width; } //================================= - (void)setHeight:(CGFloat)height; { CGRect tempFrame = self.frame; tempFrame.size.height = height; self.frame = tempFrame; } - (CGFloat)height; { return self.frame.size.height; } //================================= - (void)setSize:(CGSize)size; { CGRect tempFrame = self.frame; tempFrame.size = size; self.frame = tempFrame; } - (CGSize)size; { return self.frame.size; } //================================= - (void)setCenterX:(CGFloat)x; { CGPoint tempPoint = self.center; tempPoint.x = x; self.center = tempPoint; } - (CGFloat)centerX; { return self.center.x; } //================================= - (void)setCenterY:(CGFloat)y; { CGPoint tempPoint = self.center; tempPoint.y = y; self.center = tempPoint; } - (CGFloat)centerY; { return self.center.y; } //================================= @end
在.h文件
#import <UIKit/UIKit.h> @interface UIView (MyFrameCategory) @property(nonatomic,assign) CGFloat x; @property(nonatomic,assign) CGFloat y; @property(nonatomic,assign) CGFloat width; @property(nonatomic,assign) CGFloat height; @property(nonatomic,assign) CGFloat centerX; @property(nonatomic,assign) CGFloat centerY; @property(nonatomic,assign) CGSize size; @end
相关推荐
88483063 2020-04-23
cxcxrs 2020-06-26
zuixin 2020-02-01
vivenwan 2020-01-31
秋风瑟瑟 2019-10-28
秋风瑟瑟 2019-10-21
辛苦的字幕君小样 2011-07-01
mbcsdn 2019-07-01
xiaozaq 2019-06-29
pythonxuexi 2019-06-28
夫子与歌 2016-08-23
zhouguizhi 2011-08-11
80357518 2018-10-24
成长之路 2018-10-18
jinzhentao 2017-04-07
84533871 2015-11-19
wgPython 2019-04-20
87407607 2013-12-23