Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm writing an iPhone app with a table view inside a tab view. In my UITableViewController, I implemented -tableView:didSelectRowAtIndexPath:, but when I select a row at runtime, the method isn't being called. The table view is being populated though, so I know that other tableView methods in my controller are being called.

Does anyone have any ideas what I may have screwed up to make this happen?

share|improve this question
also you may have a gestureRecognizer on top of the UITableView that absorbs the selection .. (one of the possibilities) – M.Othman Nov 10 '12 at 7:47

17 Answers

up vote 9 down vote accepted

It sounds like perhaps the class is not the UITableViewDelegate for that table view, though UITableViewController is supposed to set that automatically.

Any chance you reset the delegate to some other class?

share|improve this answer
I discovered that while my controller was a UITableViewController, I used a plain old UIViewController widget in UI Builder. That doesn't work. When I deleted the UIViewController widget and dropped a UITableViewController in its place, everything worked. – Matt Pfefferle Nov 1 '08 at 20:51

Just in case someone made the same stupid mistake as I did:

Check out if the method name of what you expect of being "didSelect" may accidentally be gotten "didDeselect" in some way. It took about two hours for me to find out ...

share|improve this answer
4  
I made the same stupid mistake :-) – ToddH Nov 20 '12 at 1:25
2  
Me too, coding too late in the night... :P – Ramon Poca Nov 29 '12 at 21:11
Ok dude you probably just saved me like an hour of banging my head wondering what's up. – Vinay Dec 28 '12 at 6:18
Thank you very much :) – Rene Dohan Jan 13 at 13:13
THANK YOU! Dumbest mistake ive made yet... – Arbel Jan 26 at 10:45
show 2 more comments

All good answers, but there's one more to look out for...

Make sure the tableView can respond to selection by setting [tableView setAllowsSelection:YES]; or removing any line that sets it to NO.

share|improve this answer
That was the problem here. Thanks for posting. – brainray Jun 25 '12 at 21:01
But of course ;) – Old McStopher Jul 2 '12 at 10:13
@Old McStopher:Solve my problem Thanks for posting. – Harin Oct 22 '12 at 6:51
I was creating my UITableView programmatically and this was the problem. thank you so much. – Andrew Kozlik Apr 8 at 21:29

I have encountered two things in this situations.

  1. You may have forgot to implement UITableViewDelegate protocol, or there's no delegation outlet between your class and your table view.

  2. You might have a UIView inside your row that is a first responder and takes your clicks away. Say a UIButton or something similar.

share|improve this answer
1  
I had another view with a clear background that was taking my clicks away. Thanks. – Christopher Jul 16 '12 at 3:22
1  
Faced this problem because of uiview inside uitableviewcell. – kokoko Sep 25 '12 at 10:59

I have had the same problem. And it was hard to find. But somewhere in my code was this:

- (NSIndexPath *)tableView:(UITableView *)tableView willSelectRowAtIndexPath:(NSIndexPath *)indexPath {
    return nil;
}

It must be return indexPath, else -tableView:didSelectRowAtIndexPath: is not being called.

share|improve this answer

Another thing that might lead to the issue is not selected selection kind:

UITableView selection kind

Should be Single Selection for normal selection, should NOT be None.

share|improve this answer
1  
good one. I had this stupid thing checked to none – Sam Budda Oct 27 '12 at 14:34
I keep running into this because I have scenes that are always in edit mode and I keep forgetting to change the default from "No Selection During Editing". – Symmetric Dec 14 '12 at 22:50

Another possibility is that a UITapGestureRecognizer could be eating the events, as was the case here: http://stackoverflow.com/a/9248827/214070

I didn't suspect this cause, because the table cells would still highlight blue as if the taps were getting through.

share|improve this answer
Thanks bugloaf, I was getting crazy with this problem! – Trinca Feb 7 at 22:39

In case you have the same problem as me: Apparently, this method won't be called if your tableView is in edit mode. You have to set allowsSelectionDuringEditing to true.

Via this question: Enable editing does not call didSelectRowAtIndexPath?

share|improve this answer

Even though another answer has been accepted, I'll add one more possible problem and solution for people who observe this issue:

If you have automatic reference counting (ARC) turned on, you may find that even after assigning your controller as a delegate of the view, the view's messages to the controller are not being received because ARC is deleting the controller. Apparently the UITableView's delegate pointer does not count as a reference for the ARC, so if that is the only reference to it, the controller will be dealloc'd. You can verify whether or not this is happening by implementing the dealloc method on the controller and setting a breakpoint or NSLog call there.

The solution is to keep track of the controller with a strong reference somewhere else, until you are sure you won't need it anymore.

share|improve this answer
This was my issue. Thank you Andrew. – Tony Ashworth Apr 19 '12 at 16:28

I know is old and the problem was resolved, but a had similar problem, I thought that the problem was with my custom UITableViewCell, but the solution was completely different - I restart XCode :) and then works ok ! almost like Windows :)

share|improve this answer

My problem was none of the above. And so lame. But I thought I would list it here in case it helps someone.

I have a tableViewController that is my "base" controller and then I create subclasses of this controller. I was writing all my code in the tableView:didSelectRowAtIndexPath routine in the "base" class. Completely forgetting that by default this routine had also been created (albeit with no code that did anything) in all of my subclasses as well. So when I ran my app, it ran the subclass version of the code, did nothing, and made me sad. So of course, once I removed the routine from the subclasses, it used mt "base" class routine and I'm in business.

I know. Don't laugh. But maybe this will save someone the hour I lost...

share|improve this answer
Oh god. I did the exact same thing. Up voted. Thanks for that. Easily spent over an hour on this too. – Tim Jul 18 '12 at 0:57

Giving my 2 cents on this.

I had a Custom UITableViewCell and there was a button covering the whole cell, so when the touch happened, the button was selected and not the cell.

Either remove the button or in my case, I set User Interation Enable to false on the button, that way the cell was the one selected.

share|improve this answer

Remember to set the datasource and delegate in the viewDidLoad method as follows:

[self.tableView setDelegate:self];

[self.tableView setDataSource:self];
share|improve this answer
Thanks, that solved the issue in my case – Tyron Mar 13 at 11:17

I had this problem myself. I had built the bones of the view in IB (just a View and a TableView) and the delegate wasn't set. I wired it up to File's Owner and it worked like a charm. ::save::

share|improve this answer

Ok, updating here as I just ran into this problem, and my issue was slightly different than found here.

I looked in IB and saw that my delegate WAS set, but it was set incorrectly to VIEW instead of File's Owner (right click on table view to see where delegate is pointing to).

Hope that helps someone

share|improve this answer

If you read this, so still doesn't solve the problem.

I have custom cell, where checkbox "User Interaction Enabled" was disable. So, I Just switch on it. Good luck.

share|improve this answer

I was having problem that control was not going in to didselect row after applying break point. problem was in view. I removed tab gesture from view. then its worked fine

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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