2016-07-17 439 views
0

我不確定我做錯了什麼。我有一個集合視圖,我動態填充。用戶鍵入電影標題,我查詢omdb並將生成的json解析爲單元格。問題是視圖不允許我滾動查看屏幕外的單元格。這裏有一個截屏: enter image description here集合視圖不滾動?

這裏的故事板片段: enter image description here

編輯1:

enter image description here

約束:

+0

您是否檢查「用戶交互」是否未選中? – Ariel

+0

什麼是收集視圖的限制。 –

+0

@SumanAdhikari選中「用戶交互」。每個單元格導致顯示所選電影的詳細信息的另一個視圖 – Seapoe

回答

0

請試試這個

int numberOfRows = self.dataArray.count/2; 
self.collectionView.contentSize = CGSizeMake(self.view.frame.size.width, (numberOfRows * heightOfCell)); 

其中dataArray是項目列表。