ios - page - Error de Checkout de Braintree Paypal: SFSafariViewController no vuelve a la aplicación
sandbox login (0)
Estoy usando Xcode 8, swift 3. instalado a través de Carthage y Braintree versión 4.7.2.
al hacer clic en el botón continuar con sandbox purchase no se vuelve a la aplicación y no se recibe ningún nounce y no se recibe ningún error.
¿Hay algo que me perdí durante la instalación?
Estoy usando PayPal a tiempo de pago.
@IBAction func customPayPalButtonPressed(_ sender: AnyObject) {
let payPalDriver : BTPayPalDriver = BTPayPalDriver.init(apiClient: self.apiClient!)
payPalDriver.viewControllerPresentingDelegate = self
payPalDriver.appSwitchDelegate = self
let payPalRequest = BTPayPalRequest(amount: "100.00")
payPalRequest.currencyCode = "USD"
payPalDriver.requestOneTimePayment(payPalRequest) { (tokenizedPayPalAccount, error) -> Void in
if (tokenizedPayPalAccount != nil) {
print(tokenizedPayPalAccount.debugDescription)
}else if (error != nil) {
print(error?.localizedDescription)
print(error.debugDescription)
}else {
print("Cancled")
}
}
}