美文网首页
[iOS] NSTextAttachment示例

[iOS] NSTextAttachment示例

作者: manajay | 来源:发表于2018-04-26 14:27 被阅读17次
    NSTextAttachment *imageAttachment = [[NSTextAttachment alloc] init];
    imageAttachment.image = image;
    imageAttachment.bounds = CGRectMake(0, 0, 30, 30);
    NSDictionary *imageAttributes = @{NSAttachmentAttributeName:imageAttachment};
    NSAttributedString *imageAttStr = [[NSAttributedString alloc] initWithString:@"" attributes:imageAttributes];

相关文章

网友评论

      本文标题:[iOS] NSTextAttachment示例

      本文链接:https://www.haomeiwen.com/subject/huoplftx.html