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
I've encounter some similar problem there. The table view delegate and data source is set properly, and (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
also returns a positive count. But - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
is never called.
I've tried the methods before, but It doesn't work neither. Finally, I've noticed that I've forgotten to add the table view as a subview of my view controller. After doing that, it works like a charm.