0

我使用了一些断点,发现单元格的 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
}
4

1 回答 1

5

layoutSubviews不是layoutSubViews。_ 案例在 Objective-C 中很重要。

于 2013-08-08T18:12:23.170 回答