// // ViewControllerExtension.swift // Befund // // Created by Artur Savitskiy on 04.08.22. // Copyright © 2022 MVZ Dr. Stein und Kollegen. All rights reserved. // import Foundation import UIKit extension UIViewController { func PrepareForPasswordReset() { } internal func ShowMessagePopup(title: String, message: String) { let ac = UIAlertController(title: title, message: message, preferredStyle: .alert) ac.addAction(UIAlertAction(title: "OK", style: .default)) self.present(ac, animated: true, completion: nil) } }