我在自定义UITableViewCell方面存在一些问题,以及如何使用故事板管理事物。当我将样式代码放在initWithCoder:
中时,它不起作用,但如果我将它放在tableView: cellForRowAtIndexPath:
中则可行。在storyboard中我有一个原型单元格,其class属性设置为我的UITableViewCell自定义类。现在,initWithCoder:
中的代码会被调用。
SimoTableViewCell.m
@implementation SimoTableViewCell
@synthesize mainLabel, subLabel;
-(id) initWithCoder:(NSCoder *)aDecoder {
if ( !(self = [super initWithCoder:aDecoder]) ) return nil;
[self styleCellBackground];
//style the labels
[self.mainLabel styleMainLabel];
[self.subLabel styleSubLabel];
return self;
}
@end
TableViewController.m
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"NearbyLandmarksCell";
SimoTableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier forIndexPath:indexPath];
//sets the text of the labels
id<SimoListItem> item = (id<SimoListItem>) [self.places objectAtIndex:[indexPath row]];
cell.mainLabel.text = [item mainString];
cell.subLabel.text = [item subString];
//move the labels so that they are centered horizontally
float mainXPos = (CGRectGetWidth(cell.contentView.frame)/2 - CGRectGetWidth(cell.mainLabel.frame)/2);
float subXPos = (CGRectGetWidth(cell.contentView.frame)/2 - CGRectGetWidth(cell.subLabel.frame)/2);
CGRect mainFrame = cell.mainLabel.frame;
mainFrame.origin.x = mainXPos;
cell.mainLabel.frame = mainFrame;
CGRect subFrame = cell.subLabel.frame;
subFrame.origin.x = subXPos;
cell.subLabel.frame = subFrame;
return cell;
}
我调试了代码并发现首先调用dequeue...
,然后进入initWithCoder:
然后再回到视图控制器代码。奇怪的是,内存中单元格的地址在return self;
和返回控制器之间变化。如果我在dequeue...
之后将样式代码移回视图控制器,一切正常。只是我不想在重复使用单元格时做不必要的样式。
干杯
答案 0 :(得分:13)
在单元格上调用initWithCoder:
后,将创建单元格并设置其属性。但是,单元格上的XIB(IBOutlets)中的关系尚未完成。因此,当您尝试使用mainLabel
时,它是nil
引用。
将样式代码移至awakeFromNib
方法。在解压缩XIB后,在创建单元并完全配置单元后调用此方法。