NSMutableAttributedString
「続きを読む」という単語を含む CoreText があるとします。
最初の単語「続行」をクリック可能にして、それをタップして別の負荷を表示できるようにしたいUIView
。下線を付けて色を青に変更する方法を見つけましたが、どうすればリンク可能にできますか。例はありますか?
これは、下線を引き、前景色を青にする私のコードです。
CFAttributedStringSetAttribute(string, CFRangeMake(0, 10),kCTForegroundColorAttributeName, [UIColor blueColor].CGColor);
SInt32 type = kCTUnderlineStyleSingle;
CFNumberRef underline = CFNumberCreate(NULL, kCFNumberSInt32Type, &type);
CFAttributedStringSetAttribute(string, CFRangeMake(0, text.length),kCTUnderlineStyleAttributeName, underline);
CFAttributedStringSetAttribute(string, CFRangeMake(0, text.length),kCTUnderlineColorAttributeName, [UIColor blueColor].CGColor);
ありがとう