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 ...
随机推荐
- rqnoj378 约会计划
题目描述 cc是个超级帅哥,口才又好,rp极高(这句话似乎降rp),又非常的幽默,所以很多mm都跟他关系不错.然而,最关键的是,cc能够很好的调解各各妹妹间的关系.mm之间的关系及其复杂,cc必须严格 ...
- cf723a The New Year: Meeting Friends
There are three friend living on the straight line Ox in Lineland. The first friend lives at the poi ...
- Java实现Excel的操作
JAVA EXCEL API: 开源项目,通过它Java开发人员可以读取Excel文件的内容.创建新的Excel文件.更新已经存在的Excel文件.使用该API非Windows操作系统也可以通过纯Ja ...
- 最短JavaScript判断是否为IE6、IE的方法
常用的 JavaScript 检测浏览器为 IE 是哪个版本的代码,包括是否是最人极端厌恶的 ie6 识别与检测. var isIE=!!window.ActiveXObject; var isIE6 ...
- $_SERVER["SCRIPT_NAME"]、$_SERVER["PHP_SELF"]、$_SERVER["QUERY_STRING"]、$_SERVER["REQUEST_URI"]
1.$_SERVER["SCRIPT_NAME"] 说明:包含当前脚本的路径 2.$_SERVER["PHP_SELF"] 说明:当前正在执行脚本的文件名 3. ...
- /etc/rc.d/rc与/etc/rc.d/init.d的关系
在这里先解释一下 /etc/rc.d/init.d 里面放的都是什么东西.这个目录存放的是一些脚本,一般是Linux以rpm包安装时设定的一些服务的启动/关闭脚本.系统在安装时装了好多rpm包,这里面 ...
- windows系统和ubuntu虚拟机之间文件共享——samba
参考:http://www.cnblogs.com/phinecos/archive/2009/06/06/1497717.html 一. samba的安装: sudo apt-get insall ...
- Ext 修改Store初始化加载完后修改record属性。
/** * Created by huangbaidong on 2016/9/18. * 产品组件通用Store, */ Ext.define('app.component.ebs.itemdata ...
- Openstack4j 在 Maven 中的构建
什么是 Openstack4j ? OpenStack的官方SDK是基于Python语言的,对于Java程序猿来说,将Python翻译过来未免麻烦.在Openstack官方的Wiki中(戳我直达),我 ...
- win8 app内存溢出检测工具PerfView.exe的使用
PerfView使用教程:https://msdn.microsoft.com/en-us/magazine/jj721593.aspx PerfView下载地址:https://www.micros ...