Skip to content

Instantly share code, notes, and snippets.

@eienf
eienf / url_properties.m
Created August 19, 2012 07:24
check what is what of NSURL properties.
#import <Foundation/Foundation.h>
NSDictionary *dictionaryForURL(NSURL *aURL)
{
NSLog(@"scheme = %@ host = %@ port = %@ fragment = %@ lastPathComponent = %@ parameterString = %@ "
@"query = %@ user = %@ password = %@ resourceSpecifier = %@",
[aURL scheme],[aURL host],[aURL port],[aURL fragment],[aURL lastPathComponent],[aURL parameterString],
[aURL query],[aURL user],[aURL password],[aURL resourceSpecifier]);
NSLog(@"absoluteString = %@",[aURL absoluteString]);