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?

link|improve this question

Can you post your code for tableView:didSelectRowAtIndexPath:? – gerry3 Jan 21 '10 at 1:46
feedback

1 Answer

up vote 62 down vote accepted

Any chance you accidentally typed didDeselectRowAtIndexPath?

link|improve this answer
4  
Wow. Definitely break time. Thanks! – Mark Adams Jan 21 '10 at 5:07
6  
Oh god, Intelisense 2, users 0. Thank you Ole. – Rigo Vides Jun 30 '10 at 17:55
2  
If I could kiss you right now I would. I spent over two hours looking at this and didn't see it. Sheesh. – MikeyWard Oct 3 '10 at 20:28
FFFFFFFFUUUUUUUU – Tejaswi Yerukalapudi Jun 14 '11 at 17:34
2  
Son of a... seriously? -.- – OlivaresF Jan 12 at 4:51
show 7 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.