Twitter profile page iOS Swift dissection (Multiple UITableViews in UIScrollView)
I found a library, https://github.com/maxep/MXSegmentedPager Its totally works fine
After a long long investigation that is how i achieve the twitter profile behaviour.
- UnderlayScrollView
- MasterScrollView
- Header ViewController
- Bottom ViewController
- PagerTabItems [CollectionView]
- UIPagerController or any other horizontal scroll (Parchment, XLPagerTabStrip).
UnderlayScrollView is responsible of controlling the scroll gesture. its contentoffset is used to adjust inner scroll contentOffsets. Contentsize of the underlaying scroll is same as the masterscroll's contentsize.
See the source code on github for more. click