gpt4 book ai didi

ios - 如何使用 nib 文件为 TableView 创建动态单元格

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:16:41 28 4
gpt4 key购买 nike

我正在学习如何使用 nibs,总体上还是个新手。

我有一个 TableView 和另一个 View ,我在其中创建对象来填充此 TableView 。我也在使用核心数据。

我的 TableView 没有被填充...这是我的 cellForRowAtIndexPath:

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {

static NSString *cellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:cellIdentifier forIndexPath:indexPath];

Target *target = [self.fetchedResultController objectAtIndexPath:indexPath];

cell.textLabel.font = [UIFont fontWithName:@"Candara-Bold" size:20];

cell.textLabel.text = target.body;

// Configure the cell...

return cell;
}

这是我的 Nib :

enter image description here

很想在这里得到帮助...谢谢!!

最佳答案

你可以使用自动布局,我认为这是最简单的方法!!

当你使用 nib 时,你必须注册你的 nib

示例:tableView.registerNib (UINib (nibName: StoreCell, bundle: nil), forCellReuseIdentifier: StoreCell)

并且您必须将 UILabel 的行数设置为 0

这个测试项目给你https://www.dropbox.com/s/i5cwzok1327vv1e/tableTest.zip?dl=0 enter link description here

关于ios - 如何使用 nib 文件为 TableView 创建动态单元格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27463558/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com