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
Well, I can add one simple point for everyone with this problem. I would recommend using debug and making sure that:
-(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
does not return 0. If this function is not implemented or if it returns 0, the method:
cellForRowAtIndexPath:(NSIndexPath *)indexPath
is not called at all since there are no cells to be displayed.