美文网首页
Label 图片

Label 图片

作者: 阿兹尔 | 来源:发表于2017-01-05 13:48 被阅读26次

    推荐一种用Label系统的属性来做。
    UIImage *image = [UIImage imageNamed:@"321.jpg"];

    // 1> 生成文本附件
    NSTextAttachment *textAttach = [[NSTextAttachment alloc] init];
    textAttach.image = image;
    
    // 2> 使用文本附件创建属性文本
    NSAttributedString *strA = [NSAttributedString attributedStringWithAttachment:textAttach];
    
    self.lblChat.attributedText = strA;
    

    里面的lblChat是一个成员变量 在storyboard里拖得一个label。

    所有人都知道label.Text 但应该不是全都知道label.attributedText

    相关文章

      网友评论

          本文标题:Label 图片

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