Reputation: 33090
I want to put a UITableView in a scrollView.
I want the full UITableView there.
Hence, I do not want UITableView to "scroll" around independently. I want the UITableView to be fully displayed inside the scrollView.
What would you do on my situation?
Upvotes: 1
Views: 586
Reputation: 25632
You can disable scrolling on your table view: tableView.scrollEnabled = NO;
Technically, your table view is a scroll view, so all of its properties are available.
Upvotes: 1