- (void)viewDidLoad
{
[super viewDidLoad];
UINib *myNib = [UINib nibWithNibName:@"cellView" bundle:nil];
[self.tableView registerNib:myNib forCellReuseIdentifier:@"myCell"];
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
CustomCell *cell = (CustomCell *)[tableView dequeueReusableCellWithIdentifier:@"myCell"];
cell.nameLabel.text = @"Name Field";
return cell;
}
当我运行应用程序时,它显示一个空白表View。我已经尝试了多种不同的注册方式 nib文件。 nib连接到自定义ViewCell.h / .m文件。