UITableView inside UIScrollView
This should be straight foreward, but I simply can't figure it out(!)
I have a UIView 'filled with' a UIScrollView. Inside the scrollView I wan't to have a UITableView.
I have hooked up both the scrollView and the tableView with IBOutlet's in IB and set the ViewController to be the delegate and datasource of the tableView.
What else do I need开发者_Go百科 to do ? Or what shouldn't I have done?
An UITableView
is already an UIScrollView
. Why do you need to add an additional one between your top view and your table?
Just remove the UIScrollView
and it will work better than before :)
You can add the UITableView
next to the UIScrollView
(as a sibling, not a child). Then use scrollViewDidScroll
(or layoutSubviews
in case of a subclass) to synchronise the vertical position of both scrollviews.
精彩评论