SignUpTableViewCell

class SignUpTableViewCell: GeneralUITableViewCell

The GeneralUITableViewCell objects that appear in the SignupTableView. This custom class has IBOutlets for buttons, labels, and text fields.

  • UIButton used for social media buttons.

    Declaration

    Swift

    @IBOutlet weak var button: UIButton?
  • Label inbetween buttons.

    Declaration

    Swift

    @IBOutlet weak var label: UILabel?
  • CustomUITextField where the user can specify email, phone number or password.

    Declaration

    Swift

    @IBOutlet weak var textField: CustomUITextField?