My warning is as follows:

Is it possible to increase the number of inputs and add space between them? Here is an example of my code. I tried to change the border property of the second text box, but that didn't help:
let alert = UIAlertController(title: title, message: message, preferredStyle: .Alert)
alert.addTextFieldWithConfigurationHandler({ (textField) -> Void in
textField.placeholder = "Vaše jméno"
})
alert.addTextFieldWithConfigurationHandler({ (textField) -> Void in
textField.placeholder = "Společné heslo"
var oldFrame = textField.frame
oldFrame.origin.y = 40
oldFrame.size.height = 60
textField.frame = oldFrame
})
source
share