Добавьте обработчик завершения к кнопке отклонения вашего предупреждения следующим образом
let alert = UIAlertController(title: "Alert", message: "Content Here", preferredStyle: .alert)
// add textfield or whatever you need
alert.addAction(UIAlertAction(title: "OK", style: .default, handler: { (action) in
self.performSegue(withIdentifier: "secondVC", sender: self)
}))
present(alert, animated: true)
Обработчик завершения будет вызван, когда пользователь нажмет кнопку «ОК» на предупреждении.