NSAttributedString

        1.//加載圖片
        NSTextAttachment *attch = [[NSTextAttachment alloc] init];
        attch.image = [UIImage imageNamed:emotion.png];
        CGFloat attchWH = self.font.lineHeight;
        attch.bounds = CGRectMake(0, -4, attchWH, attchWH);
        //根據附件建立一個屬性文字
        NSAttributedString *imageStr = [NSAttributedString attributedStringWithAttachment:attch];
        
        2.//拼接文字
        [attributedText appendAttributedString:self.attributedText];
        
        3.//NSAttributedString轉化爲NSString
        NSString *str = attributedText.string
相關文章
相關標籤/搜索