I have an app with auto-renewable subscriptions, and when user tap on subscription i call:
SKProduct *product = ...;
SKPayment *payment = [SKPayment paymentWithProduct:product];
[[SKPaymentQueue defaultQueue] addPayment:payment];
StoreKit
presenting Alert
where asking user if he/she wont to buy a subscription, but in few other applications i saw native view
(seems to be native), and i also want to present such view
in my app. What kind of view
is it? Thank you!
UPD: I've fount that this view is calling "Payment Sheet", and found that this sheet exist in Apple Pay SDK, but not in Store Kit, how this can be presented at all? :)