0

NSTextAttachment画像のある がUILabelあり、この添付ファイルをクリックしたときにカスタム動作を実行したいと考えています。

UITextViewDelegate便利な方法を提供します

textView:shouldInteractWithTextAttachment:inRange:

ただし、使用している場合にのみ使用できますUITextView

私が使用している場合、解決策はありますUILabelか?

ありがとう!

4

1 に答える 1

2

テキストの添付ファイルはモデルの一部になり、文字のように扱われるので、添付ファイルの範囲にリンクを追加してみてください。このような:

NSTextAttachment *attachment = [[NSTextAttachment alloc] initWithData:nil ofType:nil];
attachment.image = [UIImage imageNamed:@"myImage"];

NSAttributedString *imageString = [NSAttributedString attributedStringWithAttachment:attachment];
NSMutableAttributedString *mutableImageString = [imageString mutableCopy];
[mutableImageString addAttribute:NSLinkAttributeName value:@"http://stackoverflow.com" range:NSMakeRange(0, mutableImageString.length)];
于 2014-01-03T16:26:49.340 に答える