一, 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的更多相关文章

  1. YYLabel 自动布局 富文本文字点击事件

    YYLabel显示多行除了需要设置numberOfLines = 0以外,还需要设置preferredMaxLayoutWidth最大的宽度值才可以生效多行效果 YYLabel中的NSMutableA ...

  2. 利用YYLabel 进行图文混排+高度计算

    利用YYLabel 进行图文混排+高度计算 1.项目需求: 用一个控件显示图片和文字,并且依据图片和文字动态计算控件的高度. 2.方案: 利用YYLabel控件和属性字符串处理. 注:(在使用YYLa ...

  3. YYLabel计算富文本高度-膜拜大神

    http://www.jianshu.com/p/07cd655fee7e YYTextLayout *layout = [YYTextLayout layoutWithContainerSize:C ...

  4. IOS开发基础知识碎片-导航

    1:IOS开发基础知识--碎片1 a:NSString与NSInteger的互换 b:Objective-c中集合里面不能存放基础类型,比如int string float等,只能把它们转化成对象才可 ...

  5. IOS开发基础知识--碎片50

      1:Masonry 2个或2个以上的控件等间隔排序 /** * 多个控件固定间隔的等间隔排列,变化的是控件的长度或者宽度值 * * @param axisType 轴线方向 * @param fi ...

  6. YYText-显示富文本

    github地址: https://github.com/ibireme/YYText CocoaPods安装: pod 'YYText' 1.YYLabel使用注意 private lazy var ...

  7. iOS高仿app源码:纯代码打造高仿优质《内涵段子》

    iOS高仿app源码:纯代码打造高仿优质<内涵段子>收藏下来 字数1950 阅读4999 评论173 喜欢133 Github 地址 https://github.com/Charlesy ...

  8. YYKit之YYText

    原文:http://www.cnblogs.com/lujianwenance/p/5716804.html   本文的目的是希望能帮助到我们更快的熟悉和学习YYText的结构和实现的思路,如有不正确 ...

  9. iOS开发常用第三方开源框架 持续更新中...

    键盘管理 TPKeyboardAvoiding IQKeyboardManager(1.2.8) 弹窗HUD MBProgressHUD(0.9.2) SVProgressHUD UIView+Toa ...

随机推荐

  1. 3Struts2进阶----青软S2SH(笔记)

    关于上面这个红框里的问题,经过实际测试发现,struts2增加一个命名空间后,jsp页面里所引用的资源的路径,也需要增加一个"../", 于是,跟SpringMVC没啥区别了啊.. ...

  2. Git 简明教程

    其他Git资料: Git Community Book 中文版

  3. wdcp安装memcached解决办法

    1.下载libevent-1.4.14b-stable.tar.gz和memcached-1.4.15.tar.gz这两个文件,上传到服务器,并给它一个可用的下载地址, 如http://地址/memc ...

  4. 1.3为WebApi创建帮助文档

    当你创建一个网络 API 时,它很有用来创建一个帮助页,以便其他开发人员将知道如何调用您的 API.您可以创建的所有文档手动,但它是自动生成尽可能多地更好. 为了简化这一任务,ASP.NET Web ...

  5. netty 解析http请求 post

    http://blog.csdn.net/neosmith/article/details/50383548

  6. [BZOJ1604][Usaco2008 Open]Cow Neighborhoods 奶牛的邻居

    [BZOJ1604][Usaco2008 Open]Cow Neighborhoods 奶牛的邻居 试题描述 了解奶牛们的人都知道,奶牛喜欢成群结队.观察约翰的N(1≤N≤100000)只奶牛,你会发 ...

  7. 基于winner 滤波平稳降噪效果

    https://en.wikipedia.org/wiki/Wiener_filter Wiener filter solutions The Wiener filter problem has so ...

  8. HTML文档、javascript脚本的加载与解析

    1.onload事件 1.1 onload事件分类 a.文档加载完成事件(包括脚本.图片等资源都加载完),绑定方法:<body onload="doSomething()"& ...

  9. struts2 国际化

    国际化概述: 软件国际化:一个软件根据来访者地区不同,显示不同语言. 国际化: * 必须有一组资源包: * 一组属性文件命名: 基本名称_语言(小写)_国家(大写).properties * 如:me ...

  10. c语言libcurl库的异步用法

    multi接口的使用会比easy 接口稍微复杂点,毕竟multi接口是依赖easy接口的,首先粗略的讲下其使用流程:curl_multi _init初始化一个multi curl对象,为了同时进行多个 ...