UILabel的富文本设置

2019独角兽企业重金招聘Python工程师标准>>> hot3.png


    

    //  Attachment 附件
    
    NSTextAttachment *attach = [[NSTextAttachment alloc] init];
    
    attach.image = [UIImage imageNamed:@"d_aini"];
    
    
    NSAttributedString *att = [NSAttributedString attributedStringWithAttachment:attach];
    
    NSMutableAttributedString *strM = [[NSMutableAttributedString alloc] initWithString:@"我"];
    
    [strM appendAttributedString:att];
    
    self.label.attributedText = strM;


转载于:https://my.oschina.net/venn0126/blog/544356

你可能感兴趣的:(UILabel的富文本设置)