Reputation: 394
Here is the screen shot from Cruise Finder app, I want to implement this kind of UITableView
in which every row scrolls horizontally(synchronous) with table view scrolling vertically.
I need to show a calendar for which First row showing Jun 2013 remains at fixed position,
and all other data scrolls in free form.
Every row has a title, which does not scroll horizontally e.g. 'Oceania'
Upvotes: 0
Views: 293
Reputation: 4500
Calendar should not be a part of your UITableView
. It should be a separate component. May be a UIScrollView with a background image.
You'll have to create a custom UITableViewCell to create this. In your custom UITableViewCell you'll have to create following things :
UIScrollView
inside a UITableView
. Which will scroll only till your UILabel
.Check the below image :
Upvotes: 2
Reputation: 31081
You can add UIScrollView
in your UITableViewCell
[cell addSubview:yourScrollView];
Upvotes: 1