I have an iPad App with draggable content in a UITableView...The tableView is scrollable horizontally and full of dragable images (subclass of UIImageView with overwritten touchesBegan:
etc.)
Till iOS 7 the tableView.delaysContentTouch=YES;
of the UITableView works as expected and the app was able to differentiate between a horizontal scrolling in the tableView (fast movement with the finger over the tableview) and dragging of an element inside the tableviews contentView (hold finger a second on the draggable till the tableview forwards the touch to touchesBegan:
of the UIImageView subclass in the contentView.
Now under iOS 7 scrolling is nearly impossible, because the dragging of the content immediately fires. Code wasn't changed.
Anybody expierenced something similar and found a solution?
Thanks in advance!