我希望 在我的标签文本之间加入png图片。 如何在objective-c中继续执行此操作。
答案 0 :(得分:1)
如果有人发现它有用,这就是答案----->
NSTextAttachment *attachment = [[NSTextAttachment alloc] init];
attachment.image = [UIImage imageNamed:@"Attach-52.png"];
NSAttributedString *attachmentString = [NSAttributedString attributedStringWithAttachment:attachment];
NSMutableAttributedString *myString= [[NSMutableAttributedString alloc] initWithString:@"My label text"];
[myString appendAttributedString:attachmentString];
myLabel.attributedText = myString;
同样,您可以通过NSAttributedString添加png图像。