Ho trovato questo piccolo frammento che permette di creare collegamenti da testo in un NSTextView:Creazione di un collegamento in-app in NSTextView
-(void)setHyperlinkWithTextView:(NSTextView*)inTextView
{
// create the attributed string
NSMutableAttributedString *string = [[NSMutableAttributedString alloc] init];
// create the url and use it for our attributed string
NSURL* url = [NSURL URLWithString: @"http://www.apple.com"];
[string appendAttributedString:[NSAttributedString hyperlinkFromString:@"Apple Computer" withURL:url]];
// apply it to the NSTextView's text storage
[[inTextView textStorage] setAttributedString: string];
}
sarebbe possibile avere il punto di collegamento per alcune risorse nella mia applicazione , per esempio a una specifica classe di gestori che è in grado di interpretare i collegamenti e inviare a una vista/controller corrispondente?