我有有线数据源和委托,但它没有在表格中显示任何数据.M无法找到任何错误
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *simpleTableIdentifier = @"Cell";
ReviewTableViewCell *cell = (ReviewTableViewCell *)[tableView dequeueReusableCellWithIdentifier:simpleTableIdentifier];
APIParsedForPhotoAndReviews *ele=(APIParsedForPhotoAndReviews *)[feedsForReview objectAtIndex:indexPath.row];
if (!cell)
{
cell = [[ReviewTableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:simpleTableIdentifier];
}
cell.lblName.text=ele.strname;
cell.lblReview.text=ele.strreview;
cell.lblRating.text=ele.strrating;
return cell;
}
答案 0 :(得分:0)
在使用可重复使用的Cell之前,这是注册单元的代码。
UINib *nib = [UINib nibWithNibName:nibName bundle:nil];
[tableView registerNib:nib forCellReuseIdentifier:cellIdentifier];