UIAlertController - изменить размер текстовых полей и добавить пробел между ними

Мое предупреждение выглядит так:

Можно ли увеличить входы и увеличить расстояние между ними? Вот фрагмент из моего кода. Я пытался изменитьframe свойство второго текстового поля, но это не помогло:

let alert = UIAlertController(title: title, message: message, preferredStyle: .Alert)

// Add the textfields
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
})

Ответы на вопрос(2)

Ваш ответ на вопрос