I have a view which has more than 15 UITextFields. I have to set bottomBorder(extension) for all the UITextFields. I can set it one by one for all
UITextFields
try this
for aSubView: Any in self.view.subviews { if (aSubView is UITextField) { var textField = (aSubView as! UITextField) textField. setBottomBorder() } }
or try this
for view in self.view.subviews { if (view is UITextField) { var textField = view as! UITextField textField. setBottomBorder() } }