criar função de alerta em todos os controladores de exibição - swift

Estou tentando declarar uma função para mostrar alertas no meu aplicativo. Para evitar repetir o trabalho, estou tentando usar a mesma função para todos os meus aplicativos. Tentei fazer isso criando uma classe com a função showNotification. mas quando eu crio um objeto dessa classe e chamo o método, nada acontece. Como eu posso fazer isso?

class SharedPropertiesAndMetods : UIViewController {

    func showNotification(title: String, message: String)
    {
        let alertController = UIAlertController(title: title, message: message, preferredStyle: .alert)
        let defaultAction = UIAlertAction(title: "تائید", style: .default, handler: nil)
        alertController.addAction(defaultAction)
        present(alertController, animated: true, completion: nil)
    }

}

questionAnswers(6)

yourAnswerToTheQuestion