2017-05-18 21 views
1

UICollectionViewにUITableViewを入れましたが、4つの項目がありますが、最後の項目にUICollectionViewをスクロールすると、最初のUITableViewの内容が表示されます。 collectionViewの最後の項目ですが、内容が間違っています)。あなたは下の画像を見ることができます。 以下は私のプロジェクトへのリンクです。この問題で私を助けてください。あなたは下記のようcellForItemAtUITableViewをリロードする必要がUICollectionViewのUITableViewが正しく動作しません

You can have a look at this picture

Link to my project

答えて

4

func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell { 
    let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "TableCollectionCell", for: indexPath) as! TableCollectionCell 
    cell.tableView.tag = indexPath.item 
    cell.tableView.reloadData() 
    return cell 
} 
+0

ありがとうございました!私はまた、tableViewデータをリロードする必要があります。はい! –

関連する問題