ios textview添加图片
有一个UITextView,假设我输入了一段文字,现在我想添加一张图片进去,这个功能该怎么实现?可不可以往UITextView中添加图片呢?...
有一个UITextView,假设我输入了一段文字,现在我想添加一张图片进去,这个功能该怎么实现?可不可以往UITextView中添加图片呢?
展开
- 你的回答被采纳后将获得:
- 系统奖励15(财富值+成长值)+难题奖励30(财富值+成长值)
2个回答
展开全部
NSMutableAttributedString *string = [[NSMutableAttributedString alloc] initWithAttributedString:self.content.attributedText];
NSTextAttachment *textAttachment = [[NSTextAttachment alloc] initWithData:nil ofType:nil] ;
textAttachment.image = image; //要添加的图片
NSAttributedString *textAttachmentString = [NSAttributedString attributedStringWithAttachment:textAttachment] ;
[string insertAttributedString:textAttachmentString atIndex:index];//index为用户指定要插入图片的位置
self.content.attributedText = string;
self.content.text=@"1111";
NSTextAttachment *textAttachment = [[NSTextAttachment alloc] initWithData:nil ofType:nil] ;
textAttachment.image = image; //要添加的图片
NSAttributedString *textAttachmentString = [NSAttributedString attributedStringWithAttachment:textAttachment] ;
[string insertAttributedString:textAttachmentString atIndex:index];//index为用户指定要插入图片的位置
self.content.attributedText = string;
self.content.text=@"1111";
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询