1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- import Foundation
- import NextcloudKit
- class NCApplicationHandle: NSObject {
- let appDelegate = UIApplication.shared.delegate as! AppDelegate
-
-
- func applicationOpenURL(_ url: URL) -> Bool {
- return false
- }
-
-
- func downloadedFile(selector: String, metadata: tableMetadata) {
- }
-
-
- func addCollectionViewCommonMenu(metadata: tableMetadata, imageIcon: UIImage?, actions: inout [NCMenuAction]) {
- }
-
-
- func loadItems(functionMenu: inout [NKExternalSite]) {
- }
-
-
- func didSelectItem(_ item: NKExternalSite, viewController: UIViewController) {
- }
- }
|