Marino Faggiana 8 年之前
父節點
當前提交
7a224ac02c
共有 3 個文件被更改,包括 16 次插入28 次删除
  1. 4 0
      Picker/Base.lproj/MainInterface.storyboard
  2. 12 25
      Picker/DocumentPickerViewController.swift
  3. 0 3
      iOSClient/AppDelegate.h

+ 4 - 0
Picker/Base.lproj/MainInterface.storyboard

@@ -34,6 +34,10 @@
                                         </tableViewCellContentView>
                                     </tableViewCell>
                                 </prototypes>
+                                <connections>
+                                    <outlet property="dataSource" destination="J6p-g8-CHO" id="IPP-6O-Pgj"/>
+                                    <outlet property="delegate" destination="J6p-g8-CHO" id="wBq-lQ-Kon"/>
+                                </connections>
                             </tableView>
                         </subviews>
                         <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>

+ 12 - 25
Picker/DocumentPickerViewController.swift

@@ -28,7 +28,7 @@ class DocumentPickerViewController: UIDocumentPickerExtensionViewController, CCN
     // MARK: - Properties
     
     var metadata : CCMetadata?
-    var sectionDataSource = [CCSectionDataSource]()
+    var recordsTableMetadata = [TableMetadata]()
     let dirGroup = FileManager.default.containerURL(forSecurityApplicationGroupIdentifier: capabilitiesGroups)
     
     var activeAccount : String?
@@ -72,7 +72,6 @@ class DocumentPickerViewController: UIDocumentPickerExtensionViewController, CCN
             activePassword = record.password!
             activeUrl = record.url!
             typeCloud = record.typeCloud!
-            
             localServerUrl = CCUtility.getHomeServerUrlActiveUrl(activeUrl!, typeCloud: typeCloud!)
             
         } else {
@@ -103,46 +102,34 @@ class DocumentPickerViewController: UIDocumentPickerExtensionViewController, CCN
         let directoryID : String? = CCCoreData.getDirectoryID(fromServerUrl: localServerUrl!, activeAccount: activeAccount!)
         let predicate = NSPredicate(format: "(account == %@) AND (directoryID == %@)", activeAccount!, directoryID!)
         
-        let recordsTableMetadata = CCCoreData.getTableMetadata(with: predicate, fieldOrder: CCUtility.getOrderSettings()!, ascending: CCUtility.getAscendingSettings())
-        
-        sectionDataSource = [CCSection.creataDataSourseSectionTableMetadata(recordsTableMetadata, listProgressMetadata: nil, groupByField: "none", replaceDateToExifDate: false, activeAccount: activeAccount)]
+        recordsTableMetadata = CCCoreData.getTableMetadata(with: predicate, fieldOrder: CCUtility.getOrderSettings()!, ascending: CCUtility.getAscendingSettings()) as! [TableMetadata]
         
         tableView.reloadData()
     }
-
-    /*
-    @IBAction func openDocument(_ sender: AnyObject?) {
-        let documentURL = self.documentStorageURL!.appendingPathComponent("Untitled.txt")
-        
-        // TODO: if you do not have a corresponding file provider, you must ensure that the URL returned here is backed by a file
-        self.dismissGrantingAccess(to: documentURL)
-    }
-    
-    override func prepareForPresentation(in mode: UIDocumentPickerMode) {
-        // TODO: present a view controller appropriate for picker mode here
-    }
-    */
 }
 
-/*
 // MARK: - UITableViewDataSource
 extension DocumentPickerViewController: UITableViewDataSource {
     
     // MARK: - CellIdentifiers
     fileprivate enum CellIdentifier: String {
-        case NoteCell = "noteCell"
+        case Cell = "Cell"
     }
     
     func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
-        return notes.count
+        
+        return recordsTableMetadata.count
     }
     
     func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
-        let cell = tableView.dequeueReusableCell(withIdentifier: CellIdentifier.NoteCell.rawValue, for: indexPath)
-        let note = notes[(indexPath as NSIndexPath).row]
-        cell.textLabel?.text = note.title
+        
+        let cell = tableView.dequeueReusableCell(withIdentifier: CellIdentifier.Cell.rawValue, for: indexPath)
+        
+        let record = recordsTableMetadata[(indexPath as NSIndexPath).row]
+        
+        //let note = notes[(indexPath as NSIndexPath).row]
+        cell.textLabel?.text = record.fileName
         return cell
     }
 }
-*/
 

+ 0 - 3
iOSClient/AppDelegate.h

@@ -171,9 +171,6 @@
 // initializations 
 - (void)applicationInitialized;
 
-// Task
-//- (void)changeTask:(CCMetadata *)metadata;
-
 - (void)messageNotification:(NSString *)title description:(NSString *)description visible:(BOOL)visible delay:(NSTimeInterval)delay type:(TWMessageBarMessageType)type;
 - (void)updateApplicationIconBadgeNumber;
 - (BOOL)handleShortCutItem:(UIApplicationShortcutItem *)shortcutItem;