This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import UIKit | |
@objc protocol AlertControllerDelegate: class { | |
func alertController(_ alert: UIAlertController, tappedIndex: Int) -> Void | |
} | |
private var DelegateKey: UInt8 = 0 | |
private var TagKey: UInt8 = 0 | |
extension UIAlertController { |