I have a UITableView that their cells are UITableViews (the root tableView is rotated to work in landscape, similar to the CoverFlow).
The tableview cells show fine, but I can’t scroll it, I think because the root tableView capture all the touch events.
The horizontal tableview can show dozens of cell tableviews, so I need to preserve the ability to swipe left/right the root tableview but scroll down/up the cells tableviews.
I finally put a UIScrollView instead of a UITableView. Everything work fine now: