Advertisement
Guest User

Untitled

a guest
Mar 22nd, 2017
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Swift 0.83 KB | None | 0 0
  1. class PaymentRegistrationFormViewController: RegistrationFormContentViewController {
  2.  
  3.     override func viewDidLoad() {
  4.         super.viewDidLoad()
  5.         let storyboard = UIStoryboard(name: GlobalConsts.registrationFormsStoryboardName, bundle: Bundle.main)
  6.         if let rootVC = storyboard.instantiateViewController(withIdentifier: "RegistrationFormRootViewController") as? RegistrationFormRootViewController {
  7.             rootVC.myAccountDelegate = self
  8.         }
  9.         createRadioButtons()
  10.         configureRadioButtons()
  11.         configureLabels()
  12.         configureButtons()
  13.         configurePlaceholders()
  14.         configureViews()
  15.         output.viewDidLoad()
  16.     }
  17. }
  18.  
  19.  
  20. extension PaymentRegistrationFormViewController: RegistrationFormViewControllerDelegate {
  21.     func saveDataButtonTapped() {
  22.         print("a")
  23.     }
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement