One Cell的多个表视图

时间:2016-02-22 08:00:13

标签: ios uitableview

嘿朋友我在实现这方面有困难,我的项目中有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;

0 个答案:

没有答案