做iOS开发,创建UI控件,必须的不说,还多,尤其你新入手一个项目。
我自己写代码,向来想省事:怎么能不一个一个属性写?带着这个问题,我刚开始创建了各种Tool来处理,后来用Category(证据在此),可Category有个烦人的问题:有些属性我不需要但是方法参数有,而有些属性我需要方法参数没有。
昨天,看到臧成威的如何利用Objective-C写一个精美的DSL,唉,挺好,就想着优化下自己的,于是就有了 PPMaker.
在此,献上对臧老师的感谢。
➊ 链式调用,代码简洁;
➋ 点语法后面有提示(Masonry是没有的 )
;
➌ 不需要终结词 臧老师给的示例有
;
➍ 不需要助词 如Masonry中的with
,这个也可以说是一个缺点吧;
➎ pod可根据需求随意选择。
pod 'PPMaker', '~> 0.0.22'
maker调用,直接调UILabel对象的属性,如
text
、textColor
、frame
等,当然也有自定义的,如intoView
表示要加到哪个view上、fontSize
实际上[UIFont systemFontOfSize:fontSize]
的简化等等。总之,PPMaker is very easy to use.
UILabel *lb = [[UILabel alloc]initWithFrame:CGRectMake(10, 10, 300, 50)];
[self.view addSubview:lb];
lb.backgroundColor = [UIColor whiteColor];
lb.text = @"我是一个lb";
lb.textColor = [UIColor blueColor];
lb.textAlignment = NSTextAlignmentCenter;
lb.font = [UIFont systemFontOfSize:18];
@interface UILabel (EasyMake)
+(UILabel *)lbMakeWithSuperV:(UIView *)superV
frame:(CGRect)frame
font:(UIFont *)font
alignment:(NSTextAlignment)alignment
text:(NSString *)text
textColor:(UIColor *)textColor;
@implementation UILabel (EasyMake)
+(UILabel *)lbMakeWithSuperV:(UIView *)superV
frame:(CGRect)frame
font:(UIFont *)font
alignment:(NSTextAlignment)alignment
text:(NSString *)text
textColor:(UIColor *)textColor
{
UILabel *lb = [[UILabel alloc]init];
if (superV) {
[superV addSubview:lb];
}
if (font) {
lb.font = font;
}
if (text) {
lb.text = text;
}
if (textColor) {
lb.textColor = textColor;
}
lb.frame = frame;
lb.textAlignment = alignment;
return lb;
}
@end
PPMaker是自己写的最满意的一个库,解决了自己一直以来创建UI、配置attributedText的苦恼,这其中也参考了一些大神的的blog和开源库,在此,再次表示感谢。今天,分享自己的这个库,希望帮助像我一样的同学,其次,希望觉得好的,给个star.
当然了,这个库,我会持续更新的,有什么问题,欢迎提出来。或者谁有更好的做法,热烈欢迎告知一下,深表谢意!
- 真正解决了
XCode
警告,同时优化提升信息更清晰,如:当用UILabel *
调用UIButton *
的titleState
后运行,控制台会提示“Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: '💊请注意💊:titleState不是UILabel所拥有的属性,而是UIButton所特有的!More see -[PPMake(UIButton) titleState] 第33行'”; UIButton
新增setImageEdgeInsets
和setTitleEdgeInsets
;
- 优化
UIImageView
设置image
和UIButton
设置image
导致PPMake
想调用UIButton
时调用成UIImageView
的image
; ** 具体做法**:UIButton
中的image
->imageState
。 - 优化
UIButton
中快速设置attributedStr
,不再依赖对应状态的title
必须有值; 具体做法:attributedFontColor
->attributedFontColorTitle
,normalAttributedFontColor
->normalAttributedFontColorTitle
,highlightAttributedFontColor
->highlightAttributedFontColorTitle
PPMake
对应的Category
分离出去,虽然类文件增多,但是不至于都在PPMake
中,显得过于复杂or臃肿;- 处理圆角+阴影的情况,如果阴影+阴影透明度都为0,只设置圆角。
- 新增
UIButton
防止重复点击功能;