123456789101112131415161718192021222324252627282930313233343536373839 |
- import Foundation
- class CreateMenu: NSObject {
-
- func createMenuPlain(view : UIView) {
-
- let actionSheet = AHKActionSheet.init(view: view, title: nil)
-
- actionSheet?.addButton(withTitle: "Crea cartella", image: UIImage(named: "folder"), type: AHKActionSheetButtonType.default, handler: {(AHKActionSheet) -> Void in
- NSLog("Share tapped")
- })
-
-
- actionSheet?.show()
- }
- }
|