ios Label文字中添加图片
2018-04-27 本文已影响19人
sjaljlajslkf
NSTextAttachment *attach = [[NSTextAttachment alloc] init];
attach.image = [UIImage imageNamed:@"Rectangle"];
attach.bounds = CGRectMake(0, -1, 26, 13);
[attStr insertAttributedString:[NSAttributedString attributedStringWithAttachment:attach] atIndex:0];
self.titleLabel.attributedText = attStr;