
文字处理相关
MIKE-zi
单片机 MCU ECU C语言,汇编软件工程师,IOS objective-c swift 研发工程师 前端开发H5,javaScript,typescript 前端三大框架 vue , react , angular ,微信原生小程序开发,taro跨平台小程序开发
展开
-
ios设置label行间距
-(void)setLabelSpace:(UILabel*)label withSpace:(CGFloat)space withFont:(UIFont*)font { NSMutableParagraphStyle *paraStyle = [[NSMutableParagraphStyle alloc] init]; paraStyle.lin...原创 2019-06-04 10:47:49 · 3046 阅读 · 0 评论 -
估算带有行间距 字间距的label高
估算label的高,label中可能包含行间距,字间距,缩进,不同的字体大小等信息-(CGFloat)estimateLabelHeightwithWidth:(UILabel*)label withSpace:(CGFloat)space withFont:(UIFont*)font withWidth:(CGFloat)width{ NSMutableParagraphSt...原创 2019-06-04 10:53:31 · 219 阅读 · 0 评论 -
一段文字多种颜色
UILabel *introduceLb = [UILabel new]; introduceLb.text = @"如果您需要更全面和专业的检测,建议您到健康商城购买心电专业读图服务包,购买后监测24小时心电信息并通过底座上传,得到专业医生的评估报告"; NSMutableAttributedString *atrributeStr=[[NSMutableAttribu...原创 2019-06-04 11:00:23 · 737 阅读 · 0 评论 -
基于YYLable实现 一段字体 多种颜色且可点击
@property(nonatomic,strong) YYLabel *protocolContent; _protocolContent = [[YYLabel alloc]initWithFrame:CGRectMake(23, _protocolName.bottom + 10, bkView.width - 46 , 270)]; _protocolC...原创 2019-06-04 11:06:45 · 2822 阅读 · 0 评论