一, 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. MySQL随机获取数据的方法,支持大数据量

    最近做项目,需要做一个从mysql数据库中随机取几条数据出来. 总所周知,order by rand 会死人的..因为本人对大数据量方面的只是了解的很少,无解,去找百度老师..搜索结果千篇一律.特发到 ...

  2. mysql中文乱码解决方法

    latin1(1和l的区别,l要么没有缺缺,要么缺缺是向左的直的; 1向左的缺缺是弯曲的,应该是可以看得出来的)是8位的字符集,表示英文和西欧字母. 瑞士: Switzerland [swits2la ...

  3. UIScrollView的基本使用

    UIScrollView的用法很简单 将需要展示的内容添加到UIScrollView中 设置UIScrollView的contentSize属性,告诉UIScrollView所有内容的尺寸,也就是告诉 ...

  4. Linux C 字符函数 getchar()、putchar() 与 EOF 详解

    首先给出<The_C_Programming_Language>这本书中的例子: #include <stdio.h> int main() { int c; c = getc ...

  5. CSS实现多个Div等高,类似表格布局

    <%@ taglib prefix="tiles" uri="http://tiles.apache.org/tags-tiles"%> <% ...

  6. saltstack-部署

    安装epel源(所有主机安装) [root@salt-server /]# wget -O /etc/yum.repos.d/epel.repo http://mirrors.aliyun.com/r ...

  7. iOS开发——高级篇——远程音频、视频播放

    一.远程音频播放(<AVFoundation/AVFoundation.h>) #import <AVFoundation/AVFoundation.h> /** 播放器 */ ...

  8. 双系统Ubuntu分区扩容过程记录

    本人电脑上安装了Win10 + Ubuntu 12.04双系统.前段时间因为在Ubuntu上做项目要安装一个比较大的软件,导致Ubuntu根分区的空间不够了.于是,从硬盘又分出来一部分空间,分给Ubu ...

  9. MySQL 5.6 for Windows 解压缩版配置安装

    MySQL安装文件分为两种,一种是msi格式的,一种是zip格式的.如果是msi格式的可以直接点击安装,按照它给出的安装提示进行安装(相信大家的英文可以看懂英文提示),一般MySQL将会安装在C:\P ...

  10. javascript删除数组某个元素

    1.首先可以给js的数组对象定义一个函数,用于查找指定的元素在数组中的位置,即索引 Array.prototype.indexOf = function(val) { for (var i = 0; ...