I would like to access the values of my textfield array but confused as the array I created is with tags. So anyone knows how to get the value of the list (array) I created? >
@IBOutlet var textFields: [UITextFields]!
textFields.sort { $0.tag < $1.tag}
var string = "" for item in textFields { string += item.text }