gpt4 book ai didi

xcode - 将图像从 JSON 添加到文本字段

转载 作者:行者123 更新时间:2023-11-28 08:59:19 25 4
gpt4 key购买 nike

我有一个文本字段,我使用 JSON 将内容加载到该字段中。我将如何向其中添加图像?例如,如果我要为它使用图像链接。

enter image description here

这就是我想要的方式。我希望能够在文本之间显示图片。

最佳答案

您必须创建一个 json 解析器并为每个图像创建一个 NSTextAttachment:

 let textAttachment = NSTextAttachment()
textAttachment.image = yourImage
let attrStringWithImage = NSAttributedString.init(attachment: textAttachment)
attributedString.replaceCharactersInRange(NSMakeRange(6, 1), withAttributedString: attrStringWithImage)
textView.attributedText = attributedString

关于xcode - 将图像从 JSON 添加到文本字段,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32308492/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com