gpt4 book ai didi

iphone - 如何将自定义uitableviewcell添加到使用ib创建的uitableview?

转载 作者:行者123 更新时间:2023-12-03 21:03:10 26 4
gpt4 key购买 nike

我用 IB 创建了 uitableview。我设计了自己的 uitableviewcell (它是 uiatbleviewcell 的子类,并且有自己的 xib 文件)。如何将其添加到我的uitableview?

我试过了

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

static NSString *CellIdentifier = @"myCell";
myCell *cell = (myCell *)[tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
NSArray *xib = [[NSBundle mainBundle] loadNibNamed:@"myCell" owner:self options:nil];
cell = [xib objectAtIndex:0];
}
// Configure the cell...
cell.title.text = @"tableCell";
cell.preview.text = @"preview";
cell.postedTime.text = @"right now";


return cell;
}

它工作不正确。我不能在这里包含图像,因为我的代表是 10(至少需要 11 才能上传图像)。所以这里是显示我的糟糕结果的链接。这就是我想要的:http://img708.imageshack.us/img708/5082/20120903153930.png

这就是我所拥有的: http://img836.imageshack.us/img836/5844/20120903154405.png

最佳答案

您需要使用方法更改每个单元格的默认高度

- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
{
return 62.0f; // enter value if u know or test
}

希望有帮助。快乐编码:)

关于iphone - 如何将自定义uitableviewcell添加到使用ib创建的uitableview?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12248657/

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