所以我注意到Apple改變了SKStoreProductViewController,禁用了「Write a Review」按鈕。 是否有解決此問題的解決方法或解決方法?SKStoreProductViewController速率在iOS 7上禁用
17
A
回答
14
SKStoreProductViewController不支持'寫評論'選項了。爲什麼?我真的不知道。它在iOS6中完成。
解決方法是使用'itms-app://'鏈接打開應用商店。
if (floor(NSFoundationVersionNumber) > NSFoundationVersionNumber_iOS_6_1) {
NSString *appURL = [NSString stringWithFormat:@"itms-apps://itunes.apple.com/%@/app/id%@",
[[NSLocale preferredLanguages] objectAtIndex:0],
@"YOUR_APP_ID"];
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:appURL]];
} else {
// your current StoreKit code
}
0
現在的iOS 10.3+
後SKStoreReviewController允許用戶直接在應用內通過對話框率的應用程序。唯一的缺點是,您只能請求StoreKit顯示對話框,但不能確定它是否會顯示。
import StoreKit
func requestToRate() {
SKStoreReviewController.requestReview()
}
相關問題
- 1. SKStoreProductViewController在iPhone上崩潰iOS 7的景觀應用程序
- 2. Xcode在iOS 5上編譯SKStoreProductViewController?
- 3. 在iOS 7上的UIViewController上禁用子視圖用戶交互
- 4. iOS上的opencv cvGrabFrame幀速率?
- 5. iOS - 檢測SKStoreProductViewController已打開
- 6. IOS SKStoreProductViewController loadProductWithParameters:completionBlock差錯處理,
- 7. 如何在Windows 7上禁用Direct3D加速?
- 8. 在CentOS 7上禁用圖形加速 - Mesa庫
- 9. iOS Sprite動畫幀速率
- 10. 在iOS 7上禁用單個呈現ViewController的自動旋轉
- 11. iOS 7 - 在UIWebView上禁用表情符號鍵盤
- 12. writeToFile在iOS 7上不在iOS 6上
- 13. SKStoreProductViewController不是iPad等iOS工作8
- 14. 顯示速率模塊7模板
- 15. 如何獲得iOS在FFT頻率上加速FFT結果?
- 16. 如何在iOS上實現JPG圖像顯示的快速幀速率?
- 17. 爲什麼SKStoreProductViewController loadProductWithParameters不會在iOS 8.0.2上爲Apple App Testers調用它的completionBlock?
- 18. iOS CPU使用率在這裏上升
- 19. 圖像部分在屏幕上查殺as3幀速率在IOS上
- 20. 適應iOS 7在iPad上
- 21. iOS - AVPlayer - 獲取當前FPS /幀速率
- 22. iOS獲取視頻幀速率
- 23. iOS 7在UIImagePickerViewController上應用過濾器
- 24. 如何在iOS 7上使用MFMailComposerViewController?
- 25. 在ios中禁用狀態的應用程序圖標7
- 26. iOS 7上的SDWebImage
- 27. 如何在iOS中使用AVPlayer實現4.0的播放速率?
- 28. 是否有可能控制iOS上的幀速率
- 29. 在JWPlayer上設置播放速率
- 30. 在iOS上禁用網站導航
真正偉大的解決方案,以重定向到店這裏。 http://stackoverflow.com/a/3167015/658604 –