Reputation: 1194
I have a UITableView with custom cells. It scrolls every time if I swipe fast, but when I swipe more slowly, sometimes it won't scroll.
Setup:
UITableview controller with a standard table view. I load some images in the cells asynchronously. The cells subclassed, but the only methods I override are awakeFromNib
and layoutSubviews
.
I'm setting these methods:
self.scrollView.delaysContentTouches = true
self.scrollView.canCancelContentTouches = true
Symptoms It's almost as if the cell doesn't return the touch event to the scrollView. For example, in the Mail app, you can hold down on a cell, but if you keep scrolling, it will break the touch and allow you to scroll.
I'm being as specific as I can without dumping a bunch of code, let me know if there's any other relevant info I should add.
Upvotes: 1
Views: 76
Reputation: 1535
Things to try:
Upvotes: 3