yy_model及 YYLabel
一, yy_model
1.yy_model 可以存放包含数组的属性,调用方法如下:
+ (NSDictionary *)modelCustomPropertyMapper {
return @{@"girlid" : @"id",
@"gnumber" : @"info.gnumber",
@"name" : @"info.name",
@"icon" : @"info.icon",
@"des" : @"info.des",
@"arrayGiftData": @"gift"};
} + (NSDictionary *)modelContainerPropertyGenericClass {
return @{@"arrayGiftData" : [GoddessGiftData class]};
}
- (BOOL)modelCustomTransformFromDictionary:(NSDictionary *)dic {
if( !ISDICTIONARY(dic) ) return NO;
if (!ISSTRING(_url) || [_url isEqualToString:@""]) return NO;
return YES;
}
@class Shadow, Border, Attachment; @interface Attributes
@property (nonatomic,copy) NSString *name;
@property (nonatomic,strong) NSArray<Shadow*>* shadows; //Array<Shadow>
@property (nonatomic,strong)NSSet *borders; //Set<Border>
@property (nonatomic,strong)NSMutableDictionary *attachments; //Dict<NSString,Attachment>
@end @implementation Attributes
// 返回容器类中的所需要存放的数据类型 (以 Class 或 Class Name 的形式)。
+ (NSDictionary *)modelContainerPropertyGenericClass {
return @{@"shadows" : [Shadow class],
@"borders" : Border.class,
@"attachments" : @"Attachment" };
}
@end
二, YYLabel
1.在使用 YYLabel 时,一定要给该对象设置背景颜色,不然无法显示.
NSMutableAttributedString *one = [[NSMutableAttributedString alloc] initWithString:@"Shadow"];
one.yy_font = [UIFont boldSystemFontOfSize:];
one.yy_color = [UIColor whiteColor]; YYLabel *label = [YYLabel new];
label.attributedText = one;
label.frame = CGRectMake(, , , );
// 以下语句很重要,不要漏掉
label.backgroundColor = [UIColor colorWithWhite:0.933 alpha:1.000];
[self.view addSubview:label];
2.在 cell 中使用 YYLabel 时,cell 重用时,其中的 YYLabel 视图有可能会被清除.....因此需要在复用 cell 或创建 cell 后,判断 YYLabel 视图是否存在:若不存在,就创建.
3.YYLabel 视图的 attributedText属性,和普通 UILabel 的 attributedText 属性,基本相同,赋值方法均为_chatMsgLabel.attributedText = attrStr;而且都可以直接使用 NSAttributedString 对象的 appendAttributedString 属性/ addAttribute 属性.
(PS:使用yy_attachmentStringWithContent:...时,就不要使用 addAttribute 属性了,)
YYLabel 视图一个很大的便捷是:使用
NSMutableAttributedString 对象的拓展 yy_color 和 yy_setColor:range: 属性,快速设置文字的属性,代替了复杂的addAttribute 属性.
唯一不同的一点就是:YYLabel无法识别 NSAttributedString 类的 attributedStringWithAttachment 方法添加的图片.YYLabel 添加图片需要 NSAttributedString的拓展类方法:yy_attachmentStringWithContent:....
4.在cell 中调用YYLabel时,可以用其对象的 textLayout 属性来代替 attributedText 给YYLabel赋值,同时使用 textLayout 属性的 textBoundingSize 属性
来设置 YYLabel 的宽高.代码如下:
(PS:设置YYLabel 的宽高时,尽量比 YYTextLayout 对象的 textBoundingSize 属性大,不然显示不全文字.....一开始我也质疑该属性是否准确,但是通过看层次结构图之后,就确定是我需要加大 textBoundingSize 属性值了....一定要有一个勇于怀疑的心,多尝试!!!)
YYLabel *infoLabel = [[YYLabel alloc] init];
[middleView addSubview:infoLabel];
_briefContentLabel = infoLabel;
[infoLabel mas_makeConstraints:^(MASConstraintMaker *make) {
make.top.mas_equalTo(seperateLine.mas_bottom).offset(cInfoViewTop);
make.height.mas_equalTo();
make.left.right.mas_equalTo(seperateLine);
}];
// 创建 textLayout
- (YYTextLayout*)createTextLayout:(NSString *)newText
{
NSMutableAttributedString *attr = [[NSMutableAttributedString alloc] initWithString:newText];
attr.yy_font = [[PTVConfig instance] normalFont:10 ];
attr.yy_color = MAKECOLOR(0x9B, 0x9B, 0x9B);
attr.yy_lineSpacing = 5;
attr.yy_alignment = NSTextAlignmentCenter;
CGFloat maxWidth = subtitleMaxWidth ;
CGSize containerSize = CGSizeMake(maxWidth , CGFLOAT_MAX);
YYTextLayout *layout = [YYTextLayout layoutWithContainerSize:containerSize text:attr];
return layout;
}
// 调用方式
- (void)updateLabelText:(NSString *)str
{
// 设置内容
self.subtitleLabel.textLayout = [self createTextLayout:str];
CGFloat labelHeight = [self heightOfInfoText:str];
[self.subtitleLabel mas_updateConstraints:^(MASConstraintMaker *make) {
make.height.mas_equalTo(labelHeight);
}];
}
// 高度往往有10个点的误差,需要比 YYLayout 计算的高度多10个点,参考https://www.jianshu.com/p/0b7759d63074
- (CGFloat)heightOfInfoText:(NSString *)str
{
YYTextLayout *layout = [self createTextLayout:str];
CGFloat infoHeight = layout.textBoundingSize.height + 10 ;
return infoHeight;
}
或者使用不同属性的字符串
#pragma mark 设置特殊的文字和页面高度
- (NSMutableAttributedString *)getCardSuccMsgAttrStr{
NSMutableAttributedString *attr = [[NSMutableAttributedString alloc] initWithString:@"在接下来的30分钟内,主播收到的里程值会全部双倍"];
attr.yy_font = [[PTVConfig instance] normalFont: ];
attr.yy_color = MAKECOLOR(0x9B, 0x9B, 0x9B);
[attr yy_setColor:UIColorFromRGB(0xD2800C) range:NSMakeRange(, )];
attr.yy_lineSpacing = ;
attr.yy_alignment = NSTextAlignmentCenter;
return attr;
} - (NSMutableAttributedString *)getPrestigeSuccMsgAttrStr{
NSMutableAttributedString *attr = [[NSMutableAttributedString alloc] initWithString:@"主播声望值+1"];
attr.yy_font = [[PTVConfig instance] normalFont: ];
attr.yy_color = MAKECOLOR(0x9B, 0x9B, 0x9B);
[attr yy_setColor:UIColorFromRGB(0xD2800C) range:NSMakeRange(, )];
attr.yy_lineSpacing = ;
attr.yy_alignment = NSTextAlignmentCenter;
return attr;
} - (NSMutableAttributedString *)getFailMsg:(NSString *)msg{
NSMutableAttributedString *attr = [[NSMutableAttributedString alloc] initWithString:msg];
attr.yy_font = [[PTVConfig instance] normalFont: ];
attr.yy_color = MAKECOLOR(0x9B, 0x9B, 0x9B);
attr.yy_lineSpacing = ;
attr.yy_alignment = NSTextAlignmentCenter;
return attr;
} // 调用方式
- (void)updateLabelText:(ToastMsgType)type errmsg:(NSString *)errmsg
{
NSMutableAttributedString *attri = [NSMutableAttributedString new];
switch (type) {
case :
attri = [self getCardSuccMsgAttrStr];
break; case :
attri = [self getPrestigeSuccMsgAttrStr];
break; case :
attri = [self getFailMsg:errmsg];
break;
}
// 设置内容
self.subtitleLabel.textLayout = [self createTextLayout:attri]; CGFloat labelHeight = [self heightOfInfoText:attri]; [self mas_updateConstraints:^(MASConstraintMaker *make) {
make.height.mas_equalTo(labelHeight);
}];
} // 创建 textLayout
- (YYTextLayout*)createTextLayout:(NSMutableAttributedString *)attr
{
CGFloat maxWidth = subtitleMaxWidth ;
CGSize containerSize = CGSizeMake(maxWidth , CGFLOAT_MAX);
YYTextLayout *layout = [YYTextLayout layoutWithContainerSize:containerSize text:attr];
return layout;
} // 高度往往有10个点的误差,需要比 YYLayout 计算的高度多10个点
- (CGFloat)heightOfInfoText:(NSMutableAttributedString *)attr
{
YYTextLayout *layout = [self createTextLayout:attr];
CGFloat infoHeight = layout.textBoundingSize.height + [self getTopBottomMargin] ;
return infoHeight;
}
或者使用container的方式
YYTextContainer *container = [YYTextContainer containerWithSize:containerSize];
container.maximumNumberOfRows = ;
container.truncationType = YYTextTruncationTypeEnd;
YYTextLayout *layout = [YYTextLayout layoutWithContainer:container text:attrM];
yy_model及 YYLabel的更多相关文章
- YYLabel 自动布局 富文本文字点击事件
YYLabel显示多行除了需要设置numberOfLines = 0以外,还需要设置preferredMaxLayoutWidth最大的宽度值才可以生效多行效果 YYLabel中的NSMutableA ...
- 利用YYLabel 进行图文混排+高度计算
利用YYLabel 进行图文混排+高度计算 1.项目需求: 用一个控件显示图片和文字,并且依据图片和文字动态计算控件的高度. 2.方案: 利用YYLabel控件和属性字符串处理. 注:(在使用YYLa ...
- YYLabel计算富文本高度-膜拜大神
http://www.jianshu.com/p/07cd655fee7e YYTextLayout *layout = [YYTextLayout layoutWithContainerSize:C ...
- IOS开发基础知识碎片-导航
1:IOS开发基础知识--碎片1 a:NSString与NSInteger的互换 b:Objective-c中集合里面不能存放基础类型,比如int string float等,只能把它们转化成对象才可 ...
- IOS开发基础知识--碎片50
1:Masonry 2个或2个以上的控件等间隔排序 /** * 多个控件固定间隔的等间隔排列,变化的是控件的长度或者宽度值 * * @param axisType 轴线方向 * @param fi ...
- YYText-显示富文本
github地址: https://github.com/ibireme/YYText CocoaPods安装: pod 'YYText' 1.YYLabel使用注意 private lazy var ...
- iOS高仿app源码:纯代码打造高仿优质《内涵段子》
iOS高仿app源码:纯代码打造高仿优质<内涵段子>收藏下来 字数1950 阅读4999 评论173 喜欢133 Github 地址 https://github.com/Charlesy ...
- YYKit之YYText
原文:http://www.cnblogs.com/lujianwenance/p/5716804.html 本文的目的是希望能帮助到我们更快的熟悉和学习YYText的结构和实现的思路,如有不正确 ...
- iOS开发常用第三方开源框架 持续更新中...
键盘管理 TPKeyboardAvoiding IQKeyboardManager(1.2.8) 弹窗HUD MBProgressHUD(0.9.2) SVProgressHUD UIView+Toa ...
随机推荐
- R包igraph探究
前段时候由于项目的原因,需要画图,然后开始接触R语言的igraph包,网上零零散散的搜罗了不少的信息,放在这边交流分享的同时也给自己留个备份吧~ 1.首先是读取文件,基本选用的都是csv文件 edge ...
- 配置SQL server远程连接(局域网)
具体步骤: 1) 2) 3) 4) 5) 6) 7) 最后为了防火墙有影响,直接把防火关了,测试连接通过在来设置防火墙.
- TCP/IP 和 Socket 的关系
要写网络程序就必须用Socket,这是程序员都知道的.而且,面试的时候,我们也会问对方会不会Socket编程?一般来说,很多人都会说,Socket编程基本就是listen,accept以及send,w ...
- Windows环境配置HTTP服务(Windows + Apache + Mysql + PHP)
1.安装WampServer 2.管理HTTP服务 任务图标绿色为正常启动状态 注意事项:1.检查网络是不是通的 ping 对方IP2.检查防火墙是否开启,如果开启将不能正常被访问3.检查访问权限 A ...
- jquery-简单拖拽代码
<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8" ...
- linux 命令笔记
linux 命令 创建目录 mkdir XX 列出目录 ls 进入目录 cd .. 进入上层目录 cd xx 进入xx目录 cd ~ 进入用户主目录 删除目录 rm -fr XX 清空目录,谨慎使用 ...
- Python 开发轻量级爬虫05
Python 开发轻量级爬虫 (imooc总结05--网页下载器) 介绍网页下载器 网页下载器是将互联网上url对应的网页下载到本地的工具.因为将网页下载到本地才能进行后续的分析处理,可以说网页下载器 ...
- mac os x 启用apache 和 php
Mac OS X 是自带 Apache 和 PHP 的,但默认情况下并没有开启,此文说明如何启用这两个服务,环境基于 Mac OS X 10.6 Snow Leopard. 启动 Apache 命令行 ...
- JavaScript高级程序设计学习笔记--事件
HTML事件处理程序 <input type="button" value="Click Me" onclick"showMessage()&q ...
- 获取到Android控件的高度
问题 如何获取一个控件的长和高,相信很多朋友第一眼看见这个问题都会觉得很简单,直接在onCreate里面调用getWidth.getMeasuredWidth不就可以获得了吗,但是,事实上是并没有简单 ...