Skip to content
mobile Pro edited this page May 3, 2018 · 1 revision

Welcome to the iOS-Helper wiki!

### URLByAppendingPathComponent vs URLByAppendingPathExtension NSURL *originalURL = [NSURL URLWithString:@"http://hello.com/news"]; NSLog(@"%@", [originalURL URLByAppendingPathComponent:@"local"]); NSLog(@"%@", [originalURL URLByAppendingPathExtension:@"local"]); Output:

http://hello.com/news/local http://hello.com/news.local

Clone this wiki locally