Я создавал простую кнопку Navigationcontroller, чтобы отобразить предупреждение о щелчке, но это не удалось. Пожалуйста, найдите код ниже:
//Enable the buttons to edit
self.navigationItem.rightBarButtonItem = UIBarButtonItem(title: "Edit", style: .plain, target: self, action: #selector(EditEnable(sender:)))
@objc private func EditEnable(sender: UIBarButtonItem)
{
let alert = UIAlertController(title: "Time to change the Menu for Next Week",
message: "Message",
preferredStyle: UIAlertController.Style.alert)
alert.addAction(UIAlertAction(title: "Ok", style: UIAlertAction.Style.default))
}
Не уверен, что я делаю неправильно. Пожалуйста помоги.