Hi All,
I have created a dictionary with a number of different bits of information all pulled from and xml feed. I now want to pull certain parts from the dictionary into areas to create my tableview.
so far creating the section headers was fine, but having a problem with the numberofrowsinsection part:
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
return [[sections objectAtIndex: section] objectForKey: @"itemsCount"];
}
This gives the following error: warning: return makes integer from pointer without a cast Any help welcome on this very much newbie :)