PKPaymentButton 在点击后更改样式

问题描述 投票:0回答:0

我正在尝试使用 PKPaymentButton 实现 applePayButton。 我声明它:

 private var applePayBtn = PKPaymentButton.init(paymentButtonType: .plain, paymentButtonStyle: .black)

点击此按钮后,我需要更改按钮的样式(将颜色更改为白色)

我试着做到了:

self.applePayBtn = .init(paymentButtonType: .plain, paymentButtonStyle: .whiteOutline)

但这行不通。也许有人知道如何在运行时更改 PKPaymentButton 的样式。谢谢你的回答。

swift button styles applepay
© www.soinside.com 2019 - 2024. All rights reserved.