我使用了一些断点,发现单元格的 init 方法实际上确实被调用了,所以我知道我的 tableview 正在使用自定义 tableView 单元格类。这是类的实现:
#import "FCTableViewCell.h"
@implementation FCTableViewCell
- (id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier
{
self = [super initWithStyle:style reuseIdentifier:reuseIdentifier];
if (self) {
self.textLabel.frame = CGRectMake(10.0, 19.0, 240.0, 27.0);
// Initialization code
}
return self;
}
-(void)layoutSubViews
{
[super layoutSubviews];
self.textLabel.frame = CGRectMake(10.0, 19.0, 240.0, 27.0);
self.textLabel.adjustsFontSizeToFitWidth = YES;
self.textLabel.minimumScaleFactor = 0.8;
self.textLabel.textAlignment = NSTextAlignmentCenter;
self.textLabel.font = [UIFont fontWithName:@"Avenir" size:21.0];
}
- (void)setSelected:(BOOL)selected animated:(BOOL)animated
{
[super setSelected:selected animated:animated];
// Configure the view for the selected state
}