美文网首页
ios Label文字中添加图片

ios Label文字中添加图片

作者: sjaljlajslkf | 来源:发表于2018-04-27 14:21 被阅读19次
     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;
    

    相关文章

      网友评论

          本文标题:ios Label文字中添加图片

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