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
func getTextFields() { for textField in view.subviews where view is UITextField { (textField as? UITextField).setBottomBorder() } }