gpt4 book ai didi

iphone - 使用单独的 xib 文件将 UIView 设计为 tableview 单元格

转载 作者:可可西里 更新时间:2023-11-01 05:04:34 25 4
gpt4 key购买 nike

我需要设计一个 UIView 作为带有单独 xib 文件的 tableview 单元格。我还尝试创建一个单独的 xib 并将其 View 设计为与 tableview 单元格类型匹配。但它失败了,是否有任何编程指南来创建自定义的、可重用的、tableview 单元格创建?

创建自定义表格 View 单元格后,我们如何将其添加到表格 View 中?

最佳答案

  1. 您需要子类化 UITableViewCell 然后您必须添加一个新的“View”文件(引用下图) enter image description here

  2. 删除.xib中的UIView文件,添加对象库中的Table View Cell

3.为你的单元格设置自定义类

enter image description here

CustomCell *cell = (CustomCell*)[tableView    dequeueReusableCellWithIdentifier:identifier];
if (cell == nil) {
// Load the top-level objects from the custom cell XIB.
NSArray *topLevelObjects = [[NSBundle mainBundle] loadNibNamed:@"CustomCell" owner:self options:nil];
// Grab a pointer to the first object (presumably the custom cell, as that's all the XIB should contain).
cell = [topLevelObjects objectAtIndex:0];
}

关于iphone - 使用单独的 xib 文件将 UIView 设计为 tableview 单元格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19265610/

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