this is the situation:
I need horizontal scrolling and tables in each page. This is something like a news application, it should display news from different categories when scrolling in the same horizontal direction, and within one category it should display about 30 news, scrollable vertically, of course.
I have successfully done what I need, but ...
I have the following script:
UINavigationController |__ UIViewController, which contains ScrollView and PageControl |__ UITableViewController, which holds data in rows, and is displayed inside parent, which is actually ScollView
I know this is not an ideal solution, but at least it works. As a base, I used Apple code and a tutorial for PageScroll, found on this one. Instead of a simple viewController to add to ScrollView, I used TableViewController, so basically I add tableController.tableView to ScrollView.
I also know that adding tableViews inside a scrollview is like adding a car inside a truck and driving that car, but I could not find a smarter way to do the same.
So, I need your thoughts on how this can be done using some other approach. I use storyboards and iOS 5 for this, and everything seems (and looks) messy right now.
Thanks in advance, a lot.