I have a tableView where each cell triggers a modal view (it is a travel planner, the table is used to select origin and destination).
After selecting an address the modal is dismissed and the user is returned to the tableview. However, if I immediately select a cell the event is not recoginized, I need to wait a few seconds.
I've checked that neither shouldHighlightCellAtIndexPath or didSelectCellAtIndexPath is called.
After checking other questions here I also tried to set delaysContentTouches to false (for tableview and the embedded scrollview, see UIButton not showing highlight on tap in iOS7)
Do anyone know how I can make the tableview respond to selection immediately? The delay is just long enough to annoy the users