First off, I am completely new to iOS development, so I hope there is an easier way to do things.
I am using iOS 5 storyboarding to create a dynamically generated question view. I am trying to embed a UITableViewController inside of a UIViewController so I can define different types of questions but use the same basic template. The code works, but when I try to select a cell didSelectRowAtIndexPath is never fired. I have checked the datasource and the delegate and they are both set to the correct controller. My code for the embed is:
CGRect questionViewRect = self.QuestionContentView.bounds;
UIViewController<QuestionViewProtocol>* questionView = [[UIStoryboard storyboardWithName:@"MainStoryboard" bundle:NULL] instantiateViewControllerWithIdentifier:@"MultipleChoiceQuestion"];
[questionView.view setFrame:questionViewRect];
[self.QuestionContentView addSubview:questionView.view];
Again I am doing this because I really like the storyboard, but I want to dynamically change that table view to something else for different kinds of questions. Thanks for any help!
Here is a screenshot of my storyboard. I am embedding the view from the controller on the right into a subview of the controller on the left.

allowsSelectionproperty of your UITableViewController is set toYES. – Emile Cormier Dec 30 '11 at 19:19allowsSelectionis part of the UITableView not the controller, second it is set toYES. This is why I am so frustrated with the problem. It SHOULD work. :) – devonh Dec 30 '11 at 20:13willSelectRowAtIndexPathandaccessoryButtonTappedForRowWithIndexPath. Neither responded. I just don't understand. When I check the delegate in the dataSource methods the delegate is the correct object. Does it get changed somewhere because I am adding the tableView as a subView? – devonh Dec 31 '11 at 16:14