我使用SKStoreProductViewController在我自己的应用程序中打开App Store。这是我实施的一部分。
NLStoreProductViewController *storeController = [[NLStoreProductViewController alloc] init];
[storeController setTitle:storeControllerTitle];
NSString* appUrlString = gExtAppStoreUrl[app];
NSString* appIdNumbersOnly = [appUrlString substringFromIndex:([appUrlString rangeOfString:@"id"].location) + [@"id" length]];
NSDictionary *productParameters = @{SKStoreProductParameterITunesItemIdentifier :appIdNumbersOnly};
[storeController loadProductWithParameters:productParameters completionBlock:^(BOOL result, NSError *error) {
if (result) {
[currentViewController presentViewController:storeController animated:YES completion:nil];
}
}];
但是当我在iOS7中运行时,标题文本和导航右栏按钮不会显示。这些在iOS6中显示和工作。
我在谷歌,Stackoverflow和许多其他网站上搜索过这个问题,但我发现没有谈论它。有谁知道这个问题?