In my application I have a table view which contains collectionview in each row. Its kind of a TV Guide (channels and programs). After launch table I am setting contentOffset for one collection-view to current time so all collection-views in a tableview will scroll.
collectionView.contentOffset= CGPointMake(width*index,0);
What ever visible cells of tableview all are working fine. I mean if I select cell, it's giving current time info properly. But if I scrollview the table to the end and select cells, it's giving previous day information.
I mean that there content offset is pointing to zero position so taking old data and not setting to current time. But if scroll horizontally then all cells take showing information properly. How can I achieve this even if I scroll down?