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