嘿朋友我在实现这方面有困难,我的项目中有10个tableViews,所有的tableviews已经加载了我想要的数据,显示单个单元格当任何tableview没有数据时我制作的单元格是在Xib中。我怎么能这样做..请帮助 我在cellforrowatindexpath中这样做......
static NSString *noDataAlertCellIdentifier = @"myNoDataAlertCell";
NoDataAlertTableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:noDataAlertCellIdentifier];
if (!cell) {
[tableView registerNib:[UINib nibWithNibName:@"NoDataAlertTableViewCell" bundle:nil] forCellReuseIdentifier:noDataAlertCellIdentifier];
[tableView dequeueReusableCellWithIdentifier:noDataAlertCellIdentifier];
}
cell.lblNoDataAlert.text = @"No Data Found";
return cell;