fixed crash on ios7 user device
fixed that string property of NSURLComponents can`t use on iOS7
This commit is contained in:
parent
cb7a3db23c
commit
335a437b2e
|
@ -61,7 +61,7 @@
|
|||
if (NSClassFromString(@"NSURLComponents") && [NSURLComponents instancesRespondToSelector:@selector(string)]) {
|
||||
NSURLComponents *urlComponents = [[NSURLComponents alloc] initWithURL:url resolvingAgainstBaseURL:NO];
|
||||
urlComponents.query = nil; // Strip out query parameters.
|
||||
return urlComponents.string;
|
||||
return [urlComponents.URL absoluteString];
|
||||
} else {
|
||||
return [url absoluteString];
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue