SKStoreproductviewcontroller truncated in landscape mode

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); }]; 

enter image description here

enter image description here

Is it possible to adapt the "product page" in landscape mode so that it looks good?

Env: iPhone 4S iOS 6.0.1

+8
ios iphone uiviewcontroller storekit
source share
1 answer

Yes, it is very poorly implemented. I'm actually surprised that it was possible to transfer any QA in general to the Apple part.

When you click on one of the screenshots, it displays the "detail" screen, where the scroll view still disables the images, and the images themselves are not centered on the screen, which leads to the fact that they are half hidden.

I have registered an error with Apple's error reporting system, and I recommend that you do the same, as this will increase the likelihood that Apple will indeed fix it.

https://developer.apple.com/bugreporter/

+2
source share

All Articles