推荐一种用Label系统的属性来做。
UIImage *image = [UIImage imageNamed:@"321.jpg"];
// 1> 生成文本附件
NSTextAttachment *textAttach = [[NSTextAttachment alloc] init];
textAttach.image = image;
// 2> 使用文本附件创建属性文本
NSAttributedString *strA = [NSAttributedString attributedStringWithAttachment:textAttach];
self.lblChat.attributedText = strA;
里面的lblChat是一个成员变量 在storyboard里拖得一个label。
所有人都知道label.Text 但应该不是全都知道label.attributedText
网友评论