我正在制作笔记应用,但我遇到了麻烦。
我想在 UITextView 中添加图片。我使用 NSAttributedString 将图像放入 UITextView ,但是当我从图像拾取器中放入图像时,图像尺寸太大了
我想让它像苹果笔记应用程序
我怎么能算出来?
let images = selectedImage
let attachment = NSTextAttachment()
attachment.image = images
let attString = NSAttributedString(attachment: attachment)
textView.textStorage.insertAttributedString(attString, atIndex: textView.selectedRange.location)
答案 0 :(得分:2)
这可能对您有所帮助
var options = {
layout: {
improvedLayout: false,
hierarchical: {
direction: direction,
sortMethod: "directed"
}
}
}