我刚刚添加了SKStoreProductViewController并从我自己的UIViewController中呈现了它。 如果我将设备旋转到横向模式 - 只有标题适合宽度,其他部分将被截断
....
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);
}];
是否可以在横向模式下调整“产品页面”,使其看起来不错?
环境:iPhone 4S IOS 6.0.1
答案 0 :(得分:2)
是的,实施起来非常糟糕。 我真的感到惊讶的是,这已经成功地通过了Apple的任何QA。
当您按下其中一个屏幕截图时,它会显示一个“详细信息”屏幕,其中滚动视图仍会切断图像,图像本身不会在屏幕上居中,这会导致它们出现一半模糊不清。
我在Apple的错误报告系统中记录了一个错误,我鼓励您这样做,因为这会增加Apple实际修复它的机会。