Deprecated: trim(): Passing null to parameter #1 ($string) of type string is deprecated in /var/www/html/extensions/Variables/includes/ExtVariables.php on line 198
UIITunesStoreURLResolver - iPhone Development Wiki

UIITunesStoreURLResolver

From iPhone Development Wiki
Revision as of 17:36, 12 October 2009 by KennyTM~ (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

UIITunesStoreURLResolver is a singleton class that can compute whether an iTunes Store link would link to AppStore or not.

Example usage:

NSURL* url = [NSURL URLWithString:@"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=1&mt=8"];
UIITunesStoreURLType urlType = [[UIITunesStoreURLResolver sharedResolver] urlTypeForURL:url];
assert(urlType == UIITunesStoreURLTypeAppStore);

Reference