Good to all.
I have a problem maybe something is not announced (don’t know a newbie in xcode)
when I declare a button and give it for example UIAlerts
// Показывает AlertController /* @IBAction func ShowACPressed(sender: UIButton) { let alertController = UIAlertController(title: "Вход", message: "введите данные для входа", preferredStyle: .Alert) let alertOKAction = UIAlertAction(title: "OK", style: .Default, handler: nil) alertController.addAction(alertOKAction) presentViewController(alertController, animated: true, completion: nil) } */ @IBAction func showACPressed(sender: UIButton) { print("pressed") } When you start the simulator and press the button, this error crashes, and in another project I also tried to insert UIAlert, everything also crashed. 