プロジェクトで TTTAttributedLabel を使用しています。リンク属性を変更して、作成したリンクのデフォルトの色と下線を変更することができました。
NSArray *pKeys = [[NSArray alloc] initWithObjects:(id)kCTForegroundColorAttributeName,
(id)kCTUnderlineStyleAttributeName
, nil];
NSArray *pObjects = [[NSArray alloc] initWithObjects:pAlertColor,[NSNumber numberWithInt:
kCTUnderlineStyleNone], nil];
NSDictionary *pLinkAttributes = [[NSDictionary alloc] initWithObjects:pObjects
forKeys:pKeys];
self.alertMessage.linkAttributes = pLinkAttributes;
self.alertMessage.activeLinkAttributes = pLinkAttributes;
ただし、リンクをタップすると、他のリンクがタップされたときと同じように、一時的に赤くなることに気付きました。この色を変える必要があります。それがどのように行われるかについての手がかりはありますか?