Open sindresorhus opened 3 months ago
Also part of manual request review stoped work in macOS 15.
It is alternative, but it DOES NOT WORK even if it is not marked as deprecated functionality.
All that this link do now is shows product page. Without product review sheet.
Description
SKStoreReviewController.requestReview()
is deprecated in favor ofAppStore.requestReview(in:)
. The problem is thatAppStore.requestReview(in:)
requires passing in a NSViewController, and in some contexts, this is not possible. For example, a menu bar app that only has a NSMenu when you click it. It has no NSViewController that could be passed in. I suggest making thecontroller
parameter optional.