App*_*Dev 4 nsattributedstring nstextattachment ios swift
我收到作为输入的 a NSAttributedString,其中可能包含附加为 的图像NSTextAttachment。我需要检查是否真的附加了这样的图像,在这种情况下,将其删除。我一直在寻找相关的帖子但没有成功,我该怎么做?
编辑:我正在尝试这个:
let mutableAttrStr = NSMutableAttributedString(attributedString: textView.attributedText)
textView.attributedText.enumerateAttribute(NSAttachmentAttributeName, in: NSMakeRange(0, textView.attributedText.length), options: NSAttributedString.EnumerationOptions(rawValue: 0)) { (value, range, stop) in
if (value as? NSTextAttachment) != nil {
mutableAttrStr.replaceCharacters(in: range, with: NSAttributedString(string: ""))
}
}
Run Code Online (Sandbox Code Playgroud)
如果textView.attributedText包含多个附件(我\u{ef}在它的 中看到多个附件string),我希望枚举if (value as? NSTextAttachment) != nil多次匹配条件,但该代码块只执行一次。
如何删除所有附件?
Swift 4,XCode 9 答案:
func imagePickerController(_ picker: UIImagePickerController, didFinishPickingMediaWithInfo info: [String : Any]) {
picker.dismiss(animated: true, completion: nil)
guard let image = info["UIImagePickerControllerOriginalImage"] as? UIImage else {
return
}
//check if textview contains any attachment
txtView.attributedText.enumerateAttribute(NSAttributedStringKey.attachment, in: NSRange(location: 0, length: txtView.attributedText.length), options: []) { (value, range, stop) in
if (value is NSTextAttachment){
let attachment: NSTextAttachment? = (value as? NSTextAttachment)
if ((attachment?.image) != nil) {
print("1 image attached")
let mutableAttr = txtView.attributedText.mutableCopy() as! NSMutableAttributedString
//Remove the attachment
mutableAttr.replaceCharacters(in: range, with: "")
txtView.attributedText = mutableAttr
}else{
print("No image attched")
}
}
}
//insert only one selected image into TextView at the end
let attachment = NSTextAttachment()
attachment.image = image
let newWidth = txtView.bounds.width - 20
let scale = newWidth / image.size.width
let newHeight = image.size.height * scale
attachment.bounds = CGRect.init(x: 0, y: 0, width: newWidth, height: newHeight)
let attrString = NSAttributedString(attachment: attachment)
txtView.textStorage.insert(attrString, at: txtView.selectedRange.location)
}
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
4985 次 |
| 最近记录: |