UITableView didSelectRowAtIndexPath: not being called on first tap

cocoa-touch, didselectrowatindexpath, uikit, uitableview

Solution

Any chance you accidentally typed didDeselectRowAtIndexPath?

Problem

I'm having an issue with `UITableView's` `didSelectRowAtIndexPath`. My table is setup so that when I select row it initializes a new view controller and pushes it. The first time I tap any row in the table, the method does not get called. Once I select another row, it begins to work as normal. I have verified this by setting a breakpoint on `didSelectRowAtIndexPath`. When adding an `NSLog` to the method I see that when I select the second row that finally pushes the new view controller, I see two log statements appear in the console at the same time. Any suggestions?

Original source

Related problems