I have created a UIAlertController with two text fields, it turned out like this:
Is it possible to create some space between them without creating my own pop up view controller?
This is my code:
let alert = UIAlertController(title: "Please enter Dish description and price", message: "", preferredStyle: .alert)
alert.addTextField(configurationHandler: desc)
alert.addTextField(configurationHandler: price)