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
Did you make sure to set the table view as the delegate?
If you have a UITableViewController, you this need in viewDidLoad:
[self.tableView setDelegate:self];
If you have another type of view controller, just make the UITableView an IBOutlet, make the connections to the file owner for tableViewDelegate and tableViewDataSource then do this in viewDidLoad:
[self.myTableProperty setDelegate:self];
Also make sure to conform to the UITableViewDelegate and UITableViewDataSource protocols in your .h file if the View Controller is not a UITableViewController
Cheers