Setup:
I have a single UICollectionView created on a Storyboard and delegates connected to a controller, oriented for horizontal scroll. Each UICollectionViewCell has a UITableView inside, delegated to the same controller. The Collection view is paged. There are about 3.5 cells visible at a time.
Problem:
If I scroll over horizontally on the collection view so that is now "paged" over 1 length, and then attempt to scroll a contained UITableView vertically, the UICollectionView UNINTENTIONALLY content offset resets by animating to content offset of 0,0. The touch event is maintained, and the dequeued cell continues its scrolling action. I do not want the collection view to reset when a user scrolls the tableview
note:
using the iPad simulators
Here is a sample picture. Each column is a UICollectionViewCell containing a UITableView. Each row within the column is a UITableViewCell. If I am not at Content off set of 0,0 for the UICollectionView, and I scroll on any TableView, the collection view animates back to having a content offset of 0,0