소스 검색

clear code

Marino Faggiana 6 년 전
부모
커밋
04f429d5df
1개의 변경된 파일3개의 추가작업 그리고 0개의 파일을 삭제
  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()
     }