I would like to develop two screens with UITableView and switch between them using swipe and UISegmentedControl. I found on net that for swiping is possible to use UIScrollView with paging. But I found that it is not good idea to add UITableView into UIScrollView also here:
UITableView inside UIScrollView not receiving first tap after scrollling
Important: You should not embed UIWebView or UITableView objects in UIScrollView objects. If you do so, unexpected behavior can result because touch events for the two objects can be mixed up and wrongly handled.
I found that in ios is almost exactly the same what I need in notification center. There is possible to scroll vertically and swipe horizontally also. Any idea how can I do similar function?
Thanks! Michal