假设我有一个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);
谢谢