iOS|iOS 开发 ZFUI framework控件,使布局更简单
前言
为什么会写这个?因为在iOS开发中,界面的布局一直没有Android布局有那么多的方法和优势,我个人开发都是纯代码,Masonry这个框架我在开发中也是不用的,一个是代码布局的时候,代码量比较多,另外好像在iOS10 布局有问题,网上也有些解决的方法了。
所以就想能自定义一些UI控件,使布局更加简单
实现思路
可以像Android的wrap_content一样,是UILabel 可以根据内容来展示控件的宽高
目前提供ZFUI framework里只提供了UILabel和UIButton的方法
它们都继承对应父类,然后重写里父类的方法,让控件使用更加简单和方便
实现方法
直接上代码,Demo和framework可以去github上下载
https://github.com/joshuaGeng/ZFUI-Framework
首先把ZFUI.framework 添加到项目里
调用的方法
#import
// 创建一个Label的方法
ZFUILabel *label = [[ZFUILabel alloc] init];
label.numberOfLines = 0;
label.backgroundColor = [UIColor greenColor];
[label setLabelText:@"HelloWorld" andWithFrame:CGRectMake(100, 70, 0, 0)];
//label.isCanCopy = YES;
//label.titleCopy = @"Copy";
//设置不同颜色
[label setAttributeColorWithAllStr:label.text andAllColor:[UIColor redColor] andWithDiffStr:@"World" andDiffColor:[UIColor blackColor]];
[self.view addSubview:label];
// button
ZFUIButton *button = [[ZFUIButton alloc] initWithFrame:CGRectMake(100, 120, 120, 60)];
[button setImage:[UIImage imageNamed:@"img"] forState:UIControlStateNormal];
[button setTitle:@"Button" forState:UIControlStateNormal];
button.backgroundColor = [UIColor orangeColor];
button.btnImgRect = CGRectMake(10, 20, 22, 21);
button.btnTitleRect = CGRectMake(50, 20, 120, 30);
[self.view addSubview:button];
【iOS|iOS 开发 ZFUI framework控件,使布局更简单】目前提供ZFUI framework里只提供了UILabel和UIButton的方法,后续还会继续更新,有需要的可以下载,Demo里的注释也很很详细。
推荐阅读
- 深入理解Go之generate
- 2020-04-07vue中Axios的封装和API接口的管理
- 标签、语法规范、内联框架、超链接、CSS的编写位置、CSS语法、开发工具、块和内联、常用选择器、后代元素选择器、伪类、伪元素。
- iOS中的Block
- 记录iOS生成分享图片的一些问题,根据UIView生成固定尺寸的分享图片
- 2019-08-29|2019-08-29 iOS13适配那点事
- Hacking|Hacking with iOS: SwiftUI Edition - SnowSeeker 项目(一)
- iOS面试题--基础
- 我的软件测试开发工程师书单
- echart|echart 双轴图开发