推薦一種用Label系統(tǒng)的屬性來做。
UIImage *image = [UIImage imageNamed:@"321.jpg"];
// 1> 生成文本附件
NSTextAttachment *textAttach = [[NSTextAttachment alloc] init];
textAttach.image = image;
// 2> 使用文本附件創(chuàng)建屬性文本
NSAttributedString *strA = [NSAttributedString attributedStringWithAttachment:textAttach];
self.lblChat.attributedText = strA;
里面的lblChat是一個成員變量 在storyboard里拖得一個label。
所有人都知道label.Text 但應該不是全都知道label.attributedText