UILabel的富文本设置


    

    //  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;


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