我可以在模拟器上显示Apple Pay视图控制器,但不能在设备上显示。
添加了权利并安装了证书。
class ViewController: UIViewController, PKPaymentAuthorizationViewControllerDelegate {
var paymentRequest: PKPaymentRequest!
override func viewDidLoad() {
super.viewDidLoad()
}
func rydes(shipping: Double) -> [PKPaymentSummaryItem] {
let ryde = PKPaymentSummaryItem(label: "Your Fare", amount: 1.00)
let discount = PKPaymentSummaryItem(label: "Discount", amount: -0.00)
let shipping = PKPaymentSummaryItem(label: "Shipping", amount: NSDecimalNumber(string: "\(shipping)"))
let subTotal = ryde.amount.adding(discount.amount)
let total = PKPaymentSummaryItem(label: "rydes", amount: subTotal)
return [ryde, discount, shipping, total]
} // rydes() func
func paymentAuthorizationViewController(_ controller: PKPaymentAuthorizationViewController, didSelect shippingMethod: PKShippingMethod, completion: @escaping (PKPaymentAuthorizationStatus, [PKPaymentSummaryItem]) -> Void) {
completion(PKPaymentAuthorizationStatus.success, rydes(shipping: Double(shippingMethod.amount)))
} // paymentAuthorizationViewController( didSelectShippingMethod )
func paymentAuthorizationViewController(_ controller: PKPaymentAuthorizationViewController, didAuthorizePayment payment: PKPayment, completion: @escaping (PKPaymentAuthorizationStatus) -> Void) {
completion(PKPaymentAuthorizationStatus.success)
} // paymentAuthorizationViewController( didAuthorizePayment )
func paymentAuthorizationViewControllerDidFinish(_ controller: PKPaymentAuthorizationViewController) {
controller.dismiss(animated: true, completion: nil)
} // paymentAuthorizationViewControllerDidFinish()
@IBAction func applePayPressed(_ sender: Any) {
print("enable apple pay")
// send user to Apple Pay to make payment
let paymentNetworks = [PKPaymentNetwork.visa, .masterCard, .interac, .discover, .amex]
let merchantId = "merchant.com.xxx"
if PKPaymentAuthorizationViewController.canMakePayments(usingNetworks: paymentNetworks) {
paymentRequest = PKPaymentRequest()
paymentRequest.currencyCode = "CAD"
paymentRequest.countryCode = "CA"
paymentRequest.merchantIdentifier = merchantId
paymentRequest.supportedNetworks = paymentNetworks
paymentRequest.merchantCapabilities = .capability3DS
paymentRequest.requiredShippingAddressFields = [.all]
paymentRequest.paymentSummaryItems = self.rydes(shipping: 0.00)
// . . . shipping - not really needed
let samedayShipping = PKShippingMethod(label: "Same Day", amount: 12.99)
samedayShipping.detail = "Guaranteed same day delivery."
samedayShipping.identifier = "sameday"
let twodayShipping = PKShippingMethod(label: "Two Day", amount: 4.99)
twodayShipping.detail = "Guaranteed within two days."
twodayShipping.identifier = "twoday"
let freeShipping = PKShippingMethod(label: "Same Day", amount: 0.00)
freeShipping.detail = "Guaranteed same day."
freeShipping.identifier = "freeShipping"
paymentRequest.shippingMethods = [samedayShipping, twodayShipping, freeShipping]
// . . . shipping - not really needed
let applePayVC = PKPaymentAuthorizationViewController(paymentRequest: paymentRequest)
applePayVC.delegate = self
self.present(applePayVC, animated: true, completion: nil)
} else {
print("Tell the user they need to set up Apple Pay!")
}
} // applePayPressed func ACTION
}
以上代码只返回此行 - 告诉用户他们需要设置Apple Pay!
我使用iPhone 6s作为设备,Apple Pay和Wallet使用有效的借记卡和信用卡。我来自加拿大,所以我在一个有效的地区。
class ViewController: UIViewController, PKPaymentAuthorizationViewControllerDelegate {
var paymentRequest: PKPaymentRequest! // apple pay
override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view, typically from a nib.
}
func rydes() -> [PKPaymentSummaryItem] {
let ryde = PKPaymentSummaryItem(label: "Your Fare", amount: 1.00)
let subTotal = ryde.amount
let total = PKPaymentSummaryItem(label: "rydes", amount: subTotal)
return [ryde, total]
} // rydes() func
func paymentAuthorizationViewController(_ controller: PKPaymentAuthorizationViewController, didAuthorizePayment payment: PKPayment, completion: @escaping (PKPaymentAuthorizationStatus) -> Void) {
completion(PKPaymentAuthorizationStatus.success)
} // paymentAuthorizationViewController( didAuthorizePayment )
func paymentAuthorizationViewControllerDidFinish(_ controller: PKPaymentAuthorizationViewController) {
controller.dismiss(animated: true, completion: nil)
} // paymentAuthorizationViewControllerDidFinish()
@IBAction func applePayPressed(_ sender: Any) {
print("enable apple pay")
// send user to Apple Pay to make payment
let paymentNetworks = [PKPaymentNetwork.visa, .masterCard, .interac, .discover, .amex]
let merchantID = "merchant.com.xxx"
if PKPaymentAuthorizationViewController.canMakePayments(usingNetworks: paymentNetworks) {
paymentRequest = PKPaymentRequest()
paymentRequest.currencyCode = "CAD"
paymentRequest.countryCode = "CA"
paymentRequest.merchantIdentifier = merchantID
paymentRequest.supportedNetworks = paymentNetworks
paymentRequest.merchantCapabilities = .capability3DS
paymentRequest.requiredShippingAddressFields = [.all]
paymentRequest.paymentSummaryItems = self.rydes()
let applePayVC = PKPaymentAuthorizationViewController(paymentRequest: paymentRequest)
applePayVC.delegate = self
self.present(applePayVC, animated: true, completion: nil)
} else {
print("Tell the user they need to set up Apple Pay!")
}
} // applePayPressed func ACTION
}
答案 0 :(得分:2)
在启用Apple Pay到我的应用程序时遇到的相同问题。确保您已在PKPayment汇总项目中输入了所有有效的运费,服务和总付款值。
此外,总付款金额应大于0.0,以显示付款登机口方式视图。如果任何值为0.0,则不要添加为SummaryItem。
有效PKPaymentSummaryItem代码:
{
// 12.75 subtotal
NSDecimalNumber *subtotalAmount = [NSDecimalNumber decimalNumberWithMantissa:1275
exponent:-2 isNegative:NO];
self.subtotal = [PKPaymentSummaryItem summaryItemWithLabel:@"Subtotal" amount:subtotalAmount];
// 2.00 discount
NSDecimalNumber *discountAmount = [NSDecimalNumber decimalNumberWithMantissa:200 exponent:-2 isNegative:YES];
self.discount = [PKPaymentSummaryItem summaryItemWithLabel:@"Discount" amount:discountAmount];
// 12.75 - 2.00 = 10.75 grand total
NSDecimalNumber *totalAmount = [NSDecimalNumber zero];
totalAmount = [totalAmount decimalNumberByAdding:subtotalAmount];
totalAmount = [totalAmount decimalNumberByAdding:discountAmount];
self.total = [PKPaymentSummaryItem summaryItemWithLabel:@"My Company Name" amount:totalAmount];
self.summaryItems = @[self.subtotal, self.discount, self.total];
request.paymentSummaryItems = self.summaryItems;
}
这将尝试解决您的上述问题。
修改强> 只需删除下面的代码并再次检查或检查条件,如果折扣或运费的价值大于0.0,那么您可以发送运费和折扣作为摘要项目:
let ryde = PKPaymentSummaryItem(label: "Your Fare", amount: 1.00)
//change some value here:
let discount = PKPaymentSummaryItem(label: "Discount", amount: -0.00)
let shipping = PKPaymentSummaryItem(label: "Shipping", amount: NSDecimalNumber(string: "\(shipping)"))
Make sure your subtotal or total is greater that 0.0.
let subTotal = ryde.amount.adding(discount.amount)
let total = PKPaymentSummaryItem(label: "rydes", amount: subTotal)
答案 1 :(得分:0)
如果您可以在模拟器上看到 Apple Pay 选项,并且对为什么它没有显示在真实设备上感到困惑,那么这个答案适合您。
最初,您可能在真实设备上看不到 Apple Pay 选项,因为您可能没有将任何卡添加到电子钱包应用中。
在这种情况下,您必须按照 Apple Pay - Sandbox Testing - Apple Developer 并设置一个沙盒帐户来测试 Apple Pay。
步骤:
名称:任意
卡号:3499 569590 41362
保安编码:1111
到期日:12/2022