diff --git a/VDSSample/ViewControllers/TestViewController.swift b/VDSSample/ViewControllers/TestViewController.swift index 4b10450..659d765 100644 --- a/VDSSample/ViewControllers/TestViewController.swift +++ b/VDSSample/ViewControllers/TestViewController.swift @@ -20,7 +20,7 @@ struct User { } } -class TextFieldBindingCell: UIControl { +class UserNameView: UIControl { private let firstNameTextField = TextField() private let lastNameTextField = TextField() @@ -98,7 +98,7 @@ class TextFieldBindingCell: UIControl { super.viewDidLoad() view.backgroundColor = .white - let nameTextField = TextFieldBindingCell(user: user) + let nameTextField = UserNameView(user: user) let button = UIButton() button.translatesAutoresizingMaskIntoConstraints = false