2 UITableView in a UIScrollView
ios, iphone, objective-c, uiscrollview, uitableview
Solution
If you want to lock the scrollview:
scrollView.scrollEnabled = NO;
Problem
I have a `UIScrollView` with 2 pages in my app and each page has a `UITableView` with some rows in it. The problem is that the touches are really weird. If I want to go to the second page while i am on the first one, i would simply swipe to the left from the right to go to the other page but the `UITableView` detects the swipe as a vertical swipe and "takes" the touch. I have to try 3-4 times to be successfully able to go to the other page. This is very annoying and I was wondering if somebody had a way to make the touches better. Thanks in advance. :)