I am pretty new to Iphone development . so please bear me if I ask some very simple questions.
In my application I have multiple views(i.e. .xib files). On clicking
For anyone that comes across this problem, I solved this by adding my TableView's controller as a child to the parent controller using:
UITableViewController * table = [[UITableViewController alloc] init]; ... [self.view addSubview:table.tableView]; [self addChildViewController:table];