5
一個在應用程序的鏈接,我發現這個小片段,使人們在一個NSTextView創建文本鏈接:創建於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];
}
是否可以有鏈接指向一些資源在我的應用程序,例如,一個特定的處理程序類能夠解釋鏈接並分派到相應的視圖/控制器?