@interface myViewController : UIViewController <UITableViewDelegate, UITableViewDataSource> {
}
set delegate
drag to your viewcontroller icon
check your cell identifier as same in your code also
- (UITableViewCell *)tableView:(UITableView *)tableView
cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"SimpleTableCell"];
if (cell == nil)
{
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle
reuseIdentifier:@"SimpleTableCell"];
}
return cell;
}