Browse Source

clear code

Marino Faggiana 6 years ago
parent
commit
04f429d5df
1 changed files with 3 additions and 0 deletions
  1. 3 0
      iOSClient/Activity/NCActivity.swift

+ 3 - 0
iOSClient/Activity/NCActivity.swift

@@ -221,6 +221,7 @@ class NCActivity: UIViewController, UITableViewDataSource, UITableViewDelegate,
 class activityTableViewCell: UITableViewCell, UICollectionViewDelegate, UICollectionViewDataSource, UICollectionViewDelegateFlowLayout {
     
     @IBOutlet weak var collectionView: UICollectionView!
+    
     @IBOutlet weak var icon: UIImageView!
     @IBOutlet weak var avatar: UIImageView!
     @IBOutlet weak var subject: UILabel!
@@ -235,6 +236,8 @@ class activityTableViewCell: UITableViewCell, UICollectionViewDelegate, UICollec
         collectionView.delegate = self
         collectionView.dataSource = self
         
+        self.collectionView.register(UINib.init(nibName: "activityCollectionViewCell", bundle: nil), forCellWithReuseIdentifier: "Cell")
+
         loadDatasource()
     }