我写了个view的分类,用于设置控件常用属性的连点以及frame的直接修改:
例:
UILabel *label = [[UILabel alloc]init];
label.st_frame(CGRectMake(120, 120, 100, 100)).
st_title(@"haha").
st_textColor([UIColor whiteColor]).
st_font(25).
st_backgroundColor([UIColor blueColor]).
st_textAlignment(NSTextAlignmentCenter);
[self.view addSubview:label];
如果有喜欢的兄弟姐妹可以去下载~顺手帮忙点个星星~~谢谢啦~
下载地址:https://github.com/dushoupeng/UIView-Extension.git |
|