Marino Faggiana 6 ani în urmă
părinte
comite
04f429d5df
1 a modificat fișierele cu 3 adăugiri și 0 ștergeri
  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()
     }