简体   繁体   中英

Parsing NSURL in Objective-C

I have an NSTextView control that could potentially have links in it. How do I get the full url of the link?

Here is what I have so far

-(BOOL)textView:(NSTextView *)aTextView clickedOnLink:(id)aLink atIndex:(NSUInteger)charIndex 
 {
     NSURL *htmlURL = [NSURL fileURLWithPathComponents:[aLink pathComponents]];
 }

This gives me a URL that begins with file://localhost ... How do I get rid of that portion of the URL?

NSURL* url = [NSURL URLWithString:@"http://localhost/myweb/index.html"];
NSString* reducedUrl = [NSString stringWithFormat:
    @"%@://%@",
    url.scheme,
    [url.pathComponents objectAtIndex:1]];

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM