次のように UITextView に画像を追加すると:
NSTextAttachment *textAttachment = [[NSTextAttachment alloc] init];
textAttachment.image = image;
NSAttributedString *attrStringWithImage = [NSAttributedString attributedStringWithAttachment:textAttachment];
[myString appendAttributedString:attrStringWithImage];
self.inputTextView.attributedText = myString;
ユーザーがキーボードの戻るボタンを押して画像が削除されたことを後で検出するにはどうすればよいですか?
以下を使用しますか?
- (BOOL)textView:(UITextView *)textView shouldChangeTextInRange:(NSRange)range replacementText:(NSString *)text
もしそうなら、どのように?