在xib中创建自定义表视图

时间:2016-06-14 13:45:45

标签: ios uitableview xib

在XIB中创建自定义表视图不会加载自定义单元格。请任何人都可以提供样品,这将是非常有用的。

1 个答案:

答案 0 :(得分:0)

使用xib文件创建UITableViewCell子类,然后将Cell加载到tableView,

 - (void)viewDidLoad {
   [super viewDidLoad];   
    UINib* nib = [UINib nibWithNibName:@"YourTableViewCellName" bundle:nil];
    [self.tableView registerNib:nib forCellReuseIdentifier:@"Cell"];
}

然后在你的cellForRowAtIndexPath方法中,

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
    YourTableViewCellName *cell = [tableView dequeueReusableCellWithIdentifier:@"Cell" forIndexPath:indexPath];  
return cell;

}

希望这对你有帮助。