-1
UITextView
には、画像(NSTextAttachment
)と文字列が混在しています。 UITextView
は選択できませんので、私は使用することができます。UITextViewからNSTextAttachmentを削除/削除する
- (BOOL)textView:(UITextView *)textView shouldInteractWithTextAttachment:(NSTextAttachment *)textAttachment inRange:(NSRange)characterRange
どのように私はこの方法でtextAttachment
を削除しますか?
'NSMutableAttributedString * mutableAttr = [[TextViewにattributedText] mutableCopy]; [mutableAttr replaceCharactersInRange:range withString:@ ""]; [textView setAttributedText:mutableAttr]; '? – Larme
素晴らしい!解決策としてこれを投稿し、私はそれを受け入れる – Gukki5