Search code examples
iosstorekit

iOS: SKStoreReviewController Is deprecated. how to use RequestReviewAction on project objective C?


I'm currently working on an iOS project written in Objective-C and recently noticed that SKStoreReviewController seems to have been deprecated. From what I've gathered, there's a new method called RequestReviewAction that replaces the in-app review request process.

However, I'm having trouble finding documentation or examples on how to implement RequestReviewAction in Objective-C code.

Could anyone guide me on how to use RequestReviewAction or integrate the new review request method in an Objective-C project?

Thank you so much for your help!


Solution

  • Looking at the documentation here, you can see that this is supported only in SwiftUI and therefore, not available in Objective C.

    Screenshot

    As opposed to SKStoreReviewController,

    Screenshot2