TOActionSheet icon indicating copy to clipboard operation
TOActionSheet copied to clipboard

A custom-designed reimplementation of the UIActionSheet control for iOS

Results 4 TOActionSheet issues
Sort by recently updated
recently updated
newest added

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

enhancement