me encontré con este pequeño fragmento de código que permite a uno crear enlaces de texto en un NSTextView:Creación de un enlace dentro de la aplicación en 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];
}
¿Sería posible tener el punto de enlace a algún recurso en mi solicitud , por ejemplo, a una clase de controlador específico que es capaz de interpretar los enlaces y enviarlos a una vista/controlador correspondiente.