我能够设计自定义UITableViewCells并使用http://forums.macrumors.com/showthread.php?t=545061中找到的线程中描述的技术加载它们。但是,使用该方法不再允许您使用reuseIdentifier初始化单元格,这意味着您必须在每次调用时创建每个单元格的全新实例。有没有人想出一个很好的方法来缓存特定的单元格类型以便重用,但仍然可以在Interface Builder中设计它们?
只需使用适当的方法签名实现一个方法:
- (NSString *) reuseIdentifier {
return @"myIdentifier";
}
这种技术也有效,并且在视图控制器中不需要时髦的ivar来进行内存管理。这里,自定义表视图单元格位于名为“CustomCell.xib”的xib中。
static NSData *sLoadedCustomCell = nil;
cell = [tableView dequeueReusableCellWithIdentifier:@"CustomCell"];
if (cell == nil)
{
if (sLoadedCustomCell == nil)
{
// Load the custom table cell xib
// and extract a reference to the cell object returned
// and cache it in a static to avoid reloading the nib again.
for (id loadedObject in [[NSBundle mainBundle] loadNibNamed:@"CustomCell" owner:nil options:nil])
{
if ([loadedObject isKindOfClass:[UITableViewCell class]])
{
sLoadedCustomCell = [[NSKeyedArchiver archivedDataWithRootObject: loadedObject] retain];
break;
}
}
cell = (UITableViewCell *)[NSKeyedUnarchiver unarchiveObjectWithData: sLoadedCustomCell];
}
路易斯方法对我有用。这是我用来从笔尖创建UITableViewCell的代码:
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
UITableViewCell *cell = (UITableViewCell *)[tableView dequeueReusableCellWithIdentifier:@"CustomCellId"];
if (cell == nil)
{
UIViewController *c = [[UIViewController alloc] initWithNibName:@"CustomCell" bundle:nil];
cell = (PostCell *)c.view;
[c release];
}
return cell;
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
static NSString *simpleTableIdentifier = @"CustomCell";
CustomCell *cell = (CustomCell *)[tableView dequeueReusableCellWithIdentifier:simpleTableIdentifier];
if (cell == nil)
{
NSArray *nib = [[NSBundle mainBundle] loadNibNamed:@"CustomCell" owner:self options:nil];
cell = [nib objectAtIndex:0];
[cell setSelectionStyle:UITableViewCellSelectionStyleNone];
}
return cell;
}
gustavogb解决方案对我不起作用,我尝试的是:
ChainesController *c = [[ChainesController alloc] initWithNibName:@"ChainesController" bundle:nil];
[[NSBundle mainBundle] loadNibNamed:@"ChaineArticleCell" owner:c options:nil];
cell = [c.blogTableViewCell retain];
[c release];
它似乎工作。 blogTableViewCell是单元格的IBOutlet,ChainesController是文件的所有者。
来自关于dequeueWithReuseIdentifier
的UITableView文档:“一个标识要重用的单元格对象的字符串。默认情况下,可重用单元格的标识符是其类名,但您可以将其更改为任意值。”
覆盖 - 重复使用自己是有风险的。如果您有两个子类的子类,并在单个表视图中使用这两个子类,会发生什么?如果他们将重用标识符调用发送到超级,您将使错误类型的单元格出列..............我认为您需要覆盖reuseIdentifier方法,但让它返回一个取代的标识符串。或者,如果尚未指定,请将该类作为字符串返回。
为了它的价值,我在一次iPhone Tech Talks上向一位iPhone工程师询问了这个问题。他的回答是,“是的,可以用IB来制造细胞。但不要。请不要。”
我按照Ben Mosher链接Apple的说明(谢谢!)但发现Apple忽略了一个重点。他们在IB中设计的对象只是一个UITableViewCell,它们从它加载的变量也是如此。但是,如果您实际将其设置为UITableViewCell的自定义子类,并编写子类的代码文件,则可以在代码中编写IBOutlet声明和IBAction方法,并将它们连接到IB中的自定义元素。然后,不需要使用视图标签来访问这些元素,您可以创建任何类型的疯狂单元格。这是可可触摸天堂。
现在,在iOS 5中有一个适当的UITableView方法:
- (void)registerNib:(UINib *)nib forCellReuseIdentifier:(NSString *)identifier
我不记得我最初在哪里找到了这段代码,但到目前为止它一直对我有用。
- (UITableViewCell *)tableView:(UITableView *)tableView
cellForRowAtIndexPath:(NSIndexPath *)indexPath {
static NSString *CellIdentifier = @"CustomTableCell";
static NSString *CellNib = @"CustomTableCellView";
UITableViewCell *cell = (UITableViewCell *)[tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
NSArray *nib = [[NSBundle mainBundle] loadNibNamed:CellNib owner:self options:nil];
cell = (UITableViewCell *)[nib objectAtIndex:0];
}
// perform additional custom work...
return cell;
}
Interface Builder设置示例...
看看我给这个问题的答案:
Is it possible to design NSCell subclasses in Interface Builder?
不仅可以在IB中设计UITableViewCell,这是可取的,因为否则所有手动布线和多个元素的放置都非常繁琐。只要您在可能的情况下小心使所有元素都不透明,性能就可以了。对于UITableViewCell的属性,在IB中设置了reuseID,然后在尝试出列时在代码中使用匹配的重用ID。
去年WWDC的一些主持人也听说你不应该在IB中制作桌面视图单元格,但这是一堆铺位。
从iOS大约4.0开始,iOS文档中有一些特定的说明可以让这项工作超级快速:
向下滚动到它谈论子类化UITableViewCell的地方。
这是另一种选择:
NSString * cellId = @"reuseCell";
//...
NSArray * nibObjects = [[NSBundle mainBundle] loadNibNamed:@"CustomTableCell" owner:nil options:nil];
for (id obj in nibObjects)
{
if ([obj isKindOfClass:[CustomTableCell class]])
{
cell = obj;
[cell setValue:cellId forKey:@"reuseIdentifier"];
break;
}
}
我以类似的方式创建自定义视图单元格 - 除了我通过IBOutlet连接单元格。
[nib objectAt...]
方法容易改变阵列中项目的位置。
UIViewController
方法很好 - 只是试了一下,它运行得很好。
但...
在所有情况下都不会调用initWithStyle
构造函数,因此不会进行默认初始化。
我已经阅读过有关使用initWithCoder
或awakeFromNib
的各种地方,但没有确凿的证据证明其中任何一种都是正确的方法。
除了在cellForRowAtIndexPath
方法中显式调用一些初始化方法之外,我还没有找到答案。
前段时间我在blog.atebits.com发现了一篇关于这个主题的精彩博文,并且从那时起开始使用Loren Brichter ABTableViewCell类来完成我的所有UITableViewCells。
您最终会得到一个简单的容器UIView来放置所有小部件,滚动速度很快。
希望这很有用。