shouldShowPriceConsent method

  1. @override
bool shouldShowPriceConsent()

Called by the system to check whether to immediately show the price consent form.

The default return value is true. This will inform the system to display the price consent sheet when the subscription price has been changed in App Store Connect and the subscriber has not yet taken action. See the documentation in StoreKit's [-SKPaymentQueueDelegate shouldShowPriceConsent:].

Implementation

@override
bool shouldShowPriceConsent() {
  return false;
}