CardViewController

public class CardViewController: UIViewController,
    AddressViewControllerDelegate,
    CardNumberInputViewDelegate,
    CvvInputViewDelegate,
    UITextFieldDelegate

A view controller that allows the user to enter card information.

  • Called after the controller'€™s view is loaded into memory.

    Declaration

    Swift

    override public func viewDidLoad()
  • Notifies the view controller that its view is about to be added to a view hierarchy.

    Declaration

    Swift

    public override func viewWillAppear(_ animated: Bool)
  • Notifies the view controller that its view is about to be removed from a view hierarchy.

    Declaration

    Swift

    public override func viewWillDisappear(_ animated: Bool)
  • Called to notify the view controller that its view has just laid out its subviews.

    Declaration

    Swift

    public override func viewDidLayoutSubviews()