I´m trying to open an URL with UIApplication, but when I run:
[[UIApplication sharedApplication] canOpenURL:urlToUpdate
The url is created with a String and
NSString *urlStringToOpenEscaped = [urlStringToOpen stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding];
NSURL *urlToUpdate = [NSURL URLWithString:urlStringToOpenEscaped];
Always returns FALSE.
I checked the URL is accessible from the iPad.
Any idea?