0
텍스트보기에 이미지와 함께 속성이 지정된 문자열이 있는데 속성 이미지가 정상적으로 표시됩니다. 문제는 이미지를 추가 할 때마다 텍스트 뷰 내부의 텍스트를 대체한다는 것입니다. 나는 속성이있는 이미지를 추가하고 커서를 이미지의 끝 부분에 놓으므로 이미지 아래에 텍스트를 추가 할 수 있습니다. 이것은 내가 지금까지 시도한 것입니다, 미리 감사드립니다.UItextview의 텍스트를 대체하는 속성 문자열 이미지
let attachment = NSTextAttachment()
attachment.image = selectedImage
let newImageWidth = (textView.bounds.size.width - 10)
let scale = newImageWidth/(selectedImage.size.width)
let newImageHeight = selectedImage.size.height * scale
attachment.bounds = CGRect(x: 0, y: 0, width: newImageWidth, height: newImageHeight)
let myAttributedString = NSAttributedString(attachment: attachment)
textView.textStorage.insert(myAttributedString, at: textView.selectedRange.location)