Good,
I have 2 fields: First and Last name. in the exit the 2 names leave glued without space between them.
Of this I thank you for the help.
Just add the space in the string concatenation:
var texto1 = "" + Enter.text!
var texto2 = "" + Enter1.text!
myLabel.text = texto1 = + " " + texto2
Another way:
myLabel.text = "\(Enter.text!) \(Enter1.text!)"