I am trying to mimic google places bottom scrolling list. Please refer the images below for better understanding
Google Places Bottom Scrolling List UI

I have created a horizontal scrolling UICollectionView, with each UICollectionViewCell containing a UITableView
I have an array that contains data related to each tableview. I am loading the data into the tableView during UICollectionViewDelegate Method [cellForRow at: indexPath:] by using indexPath.row as my arrayIndex. But I see some tableViews have same data.
I would like to know how do I keep track of each UICollectionViewCell and load only related data into that tableView inside UICollectionViewCell.
