LoginSignup
1
1

More than 1 year has passed since last update.

iOS14のSwiftUIでSKStoreReviewController実装メモ

Last updated at Posted at 2020-10-22

環境

  • Xcode: 12.0
  • Swift5

実装例

     import StoreKit

     if let windowScene = UIApplication.shared.windows.first?.windowScene {
          SKStoreReviewController.requestReview(in: windowScene)
     }

SwiftUIでもこれだけでOK
この書き方はiOS14.0からですので注意してください。
https://developer.apple.com/documentation/storekit/skstorereviewcontroller/3566727-requestreview

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1