I have a UITableView, which loads UIViews into its cells. These UIViews use the -touchesBegan:withEvent: etc methods, which all work fine & let me implement code to move these subviews around in the table. This all works, until I move my finger vertically & start scrolling the table, then the UIViews stop receiving any touch events. If anyone knows how to get around this I'd be very happy! Many thanks.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
||||
|
|
|
The parent UIScrollView of your UITableView might take over responding to your touch events. Just forward the event to your custom subviews.
Source: Touch forwarding on uitableview? |
||||
|
|
Old topic but I was struggling with the same issue (UITableView as a subview to UITableView). Just disable the scrolling for the "parent" UITableView with the scrollEnabled = NO. That will stop the vertical scrolling. |
|||
|
|