I want to put a "rate/review this app" feature into my iPad app. As described in this similar question, I can use code like the following:
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewContentsUserReviews?id=449581298&onlyLatestVersion=true&pageNumber=0&sortOrdering=1&type=Purple+Software"]];
to open the App Store to the appropriate section on iPhone.
However, this method does not work on the iPad. Is there a means of doing the same thing that still functions on the iPad?