|
@@ -134,6 +134,13 @@ class NCDetailViewController: UIViewController {
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ @objc func moveFile(_ notification: NSNotification) {
|
|
|
|
+ if let userInfo = notification.userInfo as NSDictionary? {
|
|
|
|
+ if let metadata = userInfo["metadata"] as? tableMetadata {
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
@objc func deleteFile(_ notification: NSNotification) {
|
|
@objc func deleteFile(_ notification: NSNotification) {
|
|
if let userInfo = notification.userInfo as NSDictionary? {
|
|
if let userInfo = notification.userInfo as NSDictionary? {
|
|
if let metadata = userInfo["metadata"] as? tableMetadata {
|
|
if let metadata = userInfo["metadata"] as? tableMetadata {
|
|
@@ -208,13 +215,6 @@ class NCDetailViewController: UIViewController {
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
- @objc func moveFile(_ notification: NSNotification) {
|
|
|
|
- if let userInfo = notification.userInfo as NSDictionary? {
|
|
|
|
- if let metadata = userInfo["metadata"] as? tableMetadata {
|
|
|
|
- }
|
|
|
|
- }
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
//MARK: -
|
|
//MARK: -
|
|
|
|
|
|
@objc func viewFile(metadata: tableMetadata, selector: String?) {
|
|
@objc func viewFile(metadata: tableMetadata, selector: String?) {
|