700字范文,内容丰富有趣,生活中的好帮手!
700字范文 > ios html富文本带图片 iOS 富文本文字添加图片

ios html富文本带图片 iOS 富文本文字添加图片

时间:2022-05-27 20:01:31

相关推荐

ios html富文本带图片 iOS 富文本文字添加图片

如图:标题前面添加海外直邮和跨境保税,iOS最好使用富文本添加图片附件的方法

NSTextAttachment*textAttachment = [[NSTextAttachment alloc] init];

//给附件添加图片

textAttachment.image= [UIImage imageNamed:@"trc_mall_overseas_directmail"];

//调整一下图片的位置,如果你的图片偏上或者偏下,调整一下bounds的y值即可

textAttachment.bounds=CGRectMake(0, -4, textAttachment.image.size.width, textAttachment.image.size.height);

//把附件转换成可变字符串,用于替换掉源字符串中的表情文字

NSAttributedString*imageStr = [NSAttributedString attributedStringWithAttachment:textAttachment];

[m_attributedString appendAttributedString:imageStr];

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。