You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jan 13, 2025. It is now read-only.
I found out we have An extension method
public void PaymentMethodsViewControllerSelectedPaymentMethod(PaymentMethodsViewController paymentMethodsViewController,IPaymentMethod paymentMethod)
{
}
For IPaymentMethodsViewControllerDelegate But I do not know how to implement that method it's not in sample too
Can anybody help me in this ?
Thanks
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
It should have a delegate method like below
public void PaymentMethodsViewControllerSelectedPaymentMethod(PaymentMethodsViewController paymentMethodsViewController,PaymentMethod paymentMethod)
{
//DismissViewController(true, null);
}
The one we have is which call when user selects method is
public void PaymentMethodsViewControllerFinished(PaymentMethodsViewController paymentMethodsViewController)
{
But it does not give any payment method information Which I am gonna need to generate Token
Thanks
The text was updated successfully, but these errors were encountered: