I have an iphone app
where I want to do the following:
- A category title bar that is a horizontally
scrolling
custom paging sizeUIScrollView
where the user can switch between the categories byswiping
left or right. - A category content page below the title bar that is also a horizontally scrolling
UIScrollView
(full screen width paging). The user can also switch between the content pages by swiping left or right.
What I would like to achieve is the following:
- Both
UIScrollViews
are linked together, whereby swiping in the category title bar swipes the content page as well, or swiping in the content page swipes the title bar as well. - If that is not possible, then at the very least, the user must be able to swipe the content page and the title swipes accordingly as well (the reverse is nit necessary).
I do remember seeing some apps implementing something like this, though I can't remember them off my head now. Any ideas how do I go about this?
Thanks!