paymentAuthorizationController(_:didSelectShippingContact:completion:)
Tells the delegate that the user selected a shipping address.
Declaration
optional func paymentAuthorizationController(_ controller: PKPaymentAuthorizationController, didSelectShippingContact contact: PKContact, completion: @escaping @Sendable (PKPaymentAuthorizationStatus, [PKShippingMethod], [PKPaymentSummaryItem]) -> Void)optional func paymentAuthorizationController(_ controller: PKPaymentAuthorizationController, didSelectShippingContact contact: PKContact) async -> (PKPaymentAuthorizationStatus, [PKShippingMethod], [PKPaymentSummaryItem])Parameters
- controller:
The payment authorization controller.
- contact:
A contact object representing the new shipping address. To maintain privacy, the shipping information is anonymized. For example, in the United States it only includes the city, state, and zip code. This provides enough information to calculate shipping costs, without revealing sensitive information until the user actually approves the purchase.
- completion:
The completion block to call with the updated payment summary items and shipping methods.
This block takes the following parameters:
statusThe authorization status for the payment. For values, see Pkpaymentauthorizationcontrollerdelegate.
shippingMethodsAn array of Pkshippingmethod objects that replaces the shipping methods for the current payment request.
summaryItemsAn array of Pkpaymentsummaryitem objects that replaces the summary items for the current payment request.
Discussion
Use this method to update the available shipping methods and, if a shipping method has been selected, the current shipping cost.
When this method is called, you create a new array of valid PKShippingMethod objects for the specified address. You also create an array of PKPaymentSummaryItem objects that represent the updated cost. The summary items should include the shipping cost if a valid shipping method has been selected. For more information on updating these values, see the PKPaymentRequest class’s shippingMethods and paymentSummaryItems properties.