CCCreateCloud.swift 592 B

123456789101112131415161718192021222324
  1. //
  2. // CCCreateCloud.swift
  3. // Nextcloud
  4. //
  5. // Created by Marino Faggiana on 09/01/17.
  6. // Copyright © 2017 TWS. All rights reserved.
  7. //
  8. import Foundation
  9. class CreateMenu: NSObject {
  10. func createMenuPlain(view : UIView) {
  11. let actionSheet = AHKActionSheet.init(view: view, title: nil)
  12. actionSheet?.addButton(withTitle: "Crea cartella", image: UIImage(named: "folder"), type: AHKActionSheetButtonType.default, handler: {(AHKActionSheet) -> Void in
  13. NSLog("Share tapped")
  14. })
  15. actionSheet?.show()
  16. }
  17. }