TOActionSheet
TOActionSheet copied to clipboard
A custom-designed reimplementation of the UIActionSheet control for iOS
Support rich text
Hello. I have installed TOActionSheet via CocoaPods With title (1 button + 1 Destructive button) --- **OK** ```swift let actionSheet = TOActionSheet(title: "Choose an action")! actionSheet.style = .light actionSheet.contentstyle =...
Hello. I have installed TOActionSheet via CocoaPods Swift code --- ```swift @IBAction func barButtonAction(_ sender: UIBarButtonItem) { let actionSheet = TOActionSheet(title: "Choose an action")! actionSheet.style = .light actionSheet.contentstyle = .default...
Looks very promising... Any way you could provide Swift code sample for it? Thanks