I have a UITableView that I want to remain stationary. But when I set self.tableView.scrollEnabled = NO, the first time you tap a cell, didSelectRowAtIndexPath is not called. The second time it is called, however. What could I do to prevent this? Thanks.
Asked
Active
Viewed 42 times
0
-
2Are you sure you aren't accidentally implementing `didDeselectCellAtIndexPath`? – Undo Oct 02 '14 at 22:26
-
1No, I'm not. I found a hacky workaround, though. If I leave scrolling enabled, but disable bounce it works. – AttilaTheFun Oct 03 '14 at 00:53