hello I want to know how can I generically define function which can be apply to all of the UITextFields
in specific UIViewController
on which I am working in. Lets say If I have 10 textfields and I want all of them to be hidden, or seteditable false or true. I don't want to write like this textfield
textField1.hidden = true
textField2.hidden = true
textField3.hidden = true
etc etc
Hope you understand my question