mvm_core_ui/MVMCoreUI/Alerts/AlertDelegateProtocol.swift
2023-04-18 09:07:11 -04:00

20 lines
625 B
Swift

//
// AlertDelegateProtocol.swift
// MVMCoreUI
//
// Created by Scott Pfeil on 4/17/23.
// Copyright © 2023 Verizon Wireless. All rights reserved.
//
import Foundation
@objc
public protocol AlertDelegateProtocol {
// All are performed on the main thread.
@MainActor func alertShown(_ alertController: UIAlertController)
@MainActor func alertCancelled(_ alertController: UIAlertController)
@MainActor func alertDismissed(_ alertController: UIAlertController)
@MainActor func alertPaused(_ alertController: UIAlertController)
@MainActor func alertUnpaused(_ alertController: UIAlertController)
}