UITextField
をUIAlertController
に追加しました。私はテキストフィールドの高さを変更したい。私はこの方法で試しました。SwiftのUIAlertControllerでUITextFieldの高さを変更するにはどうすればよいですか?
let alertController = UIAlertController(title: "Comments", message: "Write your comments here", preferredStyle: UIAlertControllerStyle.alert)
alertController.addTextField { (textField : UITextField) -> Void in
var frame: CGRect = textField.frame
frame.size.height = 100
textField.frame = frame
textField.placeholder = "comment"
print(textField.frame.size.height)
}
let cancelAction = UIAlertAction(title: "Cancel", style: UIAlertActionStyle.cancel) { (result : UIAlertAction) -> Void in
}
let okAction = UIAlertAction(title: "OK", style: UIAlertActionStyle.default) { (result : UIAlertAction) -> Void in
}
alertController.addAction(cancelAction)
alertController.addAction(okAction)
self.present(alertController, animated: true, completion: nil)
これは機能しません。
は、この[解答](https://stackoverflow.comを試してみてください/ a/37470191/4056108) – chirag90
すでに試してみましたが、うまくいきませんでした:( –