如何在标签文本之间包含png图像

时间:2016-05-03 05:59:26

标签: ios objective-c xcode uilabel

我希望 在我的标签文本之间加入png图片。 如何在objective-c中继续执行此操作。

1 个答案:

答案 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图像。