How can I create UITextField based on a user input in swift
I tried to do it but it's not possible to drag and drop so many text fields !
For example, I've a UITextField if a user enter 5< for example, then a 5 UITextField's will be created I need it in another view controller and I need to control them separately how can I do it ?
@IBOutlet weak var numberOfTextFields: UITextField!
@IBAction func the_action_button(sender: AnyObject) {
// ?
}