Tentando criar um link com o NSTextField
Estou usando esta categoria (isso está certo?)http://www.nightproductions.net/references/dsclickableurltextfield_reference.html#setAttributedStringValue
para implementar campos de texto clicáveis. Importei o arquivo de cabeçalho na minha classe de controlador e defini seu valor de string atribuído como este
NSAttributedString* str = [[NSAttributedString alloc] initWithString:@"http://www.yahoo.com"];
[url setAttributedStringValue:(NSAttributedString *)str];
[str release];
O campo de texto não é selecionável nem editável.
O valor do campo de texto está definido, mas não é clicável e não é um link.
Desde já, obrigado.