patbef-iOS/Befund/Core/Extensions/ViewControllerExtension.swift

27 lines
589 B
Swift
Raw Normal View History

2024-01-29 16:20:42 +01:00
//
// 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)
}
}