I just added an SKStoreProductViewController and introduced it from my own UIViewController. If I turn the device into landscape mode - only the title matches the width, other parts are truncated
.... NSDictionary *parameters = @{SKStoreProductParameterITunesItemIdentifier:[NSNumber numberWithInteger:[productID integerValue]]}; [self.storeViewController loadProductWithParameters:parameters completionBlock:^(BOOL result, NSError *error) { if (result) { [presentingViewController presentModalViewController:self.storeViewController animated:YES]; } handler(result); }];


Is it possible to adapt the "product page" in landscape mode so that it looks good?
Env: iPhone 4S iOS 6.0.1
ios iphone uiviewcontroller storekit
Injectios
source share