#import "ViewController.h"
@interface ViewController ()
@end
@implementation ViewController
- (void)viewDidLoad {
[super viewDidLoad];
NSURL *url = [NSURL URLWithString:@"http://www.testurl.com:8080/subpath/subsubpath?uid=123&gid=456"];
NSLog(@"scheme = %@",[url scheme]);
NSLog(@"host = %@",[url host]);
NSLog(@"port = %@",[url port]);
NSLog(@"path = %@",[url path]);
NSLog(@"lastPathComponent = %@",[url lastPathComponent]);
NSLog(@"query = %@",[url query]);
NSLog(@"absoluteString = %@", [url absoluteString]);
NSLog(@"relativePath = %@", [url relativePath]);
}
@end