首页 > 代码库 > iOS -- YYText富文本
iOS -- YYText富文本
NSMutableAttributedString *text = [[NSMutableAttributedString alloc] initWithString: [NSString stringWithFormat:@"%@", kRealName]]; [text setYy_color:kDarkColor]; NSMutableAttributedString *one = [[NSMutableAttributedString alloc] initWithString: [NSString stringWithFormat:@"(%@)", kRole_name]]; [one setYy_color:WhiteColor]; [text appendAttributedString:one]; titleLabel.attributedText = text; text.yy_lineSpacing = 5; text.yy_font = [UIFont systemFontOfSize:14]; // text.yy_color = ThemeColor; __weak typeof(self) weakself = self; /* [text yy_setTextHighlightRange:NSMakeRange(10, 7) color:UIColorFromRGBValue(0x22b4e1) backgroundColor:[UIColor clearColor] tapAction:^(UIView * _Nonnull containerView, NSAttributedString * _Nonnull text, NSRange range, CGRect rect) { NSLog(@"xxx协议被点击了"); }]; */ titleLabel.numberOfLines = 0; //设置多行显示 titleLabel.preferredMaxLayoutWidth = kScreenWidth - 30; //设置最大的宽度 titleLabel.attributedText = text; //设置富文本
iOS -- YYText富文本
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。