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 12, 2019. It is now read-only.
Not an issue but if anyone would like to know how to change the BG color of the CardIOPaymentViewController use the below where cardIOVC is an instance of CardIOPaymentViewController (CardIOPaymentViewController is a subclass of UINavigationController so just ask it for the the controllers contained in its hierarchy.. in this case I pull out the first VC it finds which happens to be a CardIOViewController and from here I set the appropriate background color)
Not an issue but if anyone would like to know how to change the BG color of the CardIOPaymentViewController use the below where cardIOVC is an instance of CardIOPaymentViewController (CardIOPaymentViewController is a subclass of UINavigationController so just ask it for the the controllers contained in its hierarchy.. in this case I pull out the first VC it finds which happens to be a CardIOViewController and from here I set the appropriate background color)
cardIOVC?.viewControllers.first?.view.backgroundColor = UIColor(red: 87/255, green: 166/255, blue: 216/255, alpha: 1)
The text was updated successfully, but these errors were encountered: