浏览代码

Notification view

Marino Faggiana 8 年之前
父节点
当前提交
bf7307b97b
共有 1 个文件被更改,包括 3 次插入10 次删除
  1. 3 10
      iOSClient/Notification/CCNotification.swift

+ 3 - 10
iOSClient/Notification/CCNotification.swift

@@ -55,20 +55,13 @@ class CCNotification: UITableViewController, OCNetworkingDelegate {
     
     // MARK: - Table
 
-    func getSataSourceAt(indexPath: IndexPath) -> OCNotifications {
-        
-        let notification = appDelegate.listOfNotifications.object(at: indexPath.row) as! OCNotifications
-        
-        return notification
-    }
-    
     override func tableView(_ tableView: UITableView, canEditRowAt indexPath: IndexPath) -> Bool {
         return true
     }
     
     override func tableView(_ tableView: UITableView, editActionsForRowAt: IndexPath) -> [UITableViewRowAction]? {
         
-        let notification = self.getSataSourceAt(indexPath: editActionsForRowAt)
+        let notification = appDelegate.listOfNotifications.object(at: editActionsForRowAt.row) as! OCNotifications
         
         // No Action request
         if notification.actions.count == 0 {
@@ -132,7 +125,7 @@ class CCNotification: UITableViewController, OCNetworkingDelegate {
     
     override func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat {
         
-        let notification = self.getSataSourceAt(indexPath: indexPath)
+        let notification = appDelegate.listOfNotifications.object(at: indexPath.row) as! OCNotifications
         
         if notification.message.characters.count > 0 {
             
@@ -162,7 +155,7 @@ class CCNotification: UITableViewController, OCNetworkingDelegate {
             
         } else {
             
-            let notification = self.getSataSourceAt(indexPath: indexPath)
+            let notification = appDelegate.listOfNotifications.object(at: indexPath.row) as! OCNotifications
             
             let urlIcon = URL(string: notification.icon)!
             let pathFileName = (appDelegate.directoryUser) + "/" + urlIcon.lastPathComponent