0

我的 UICollectionViewCell 有以下代码

@property (strong, nonatomic) IBOutlet UIImageView *storyImage;
@property (strong, nonatomic) IBOutlet UILabel *titleLabel;
@property (strong, nonatomic) IBOutlet UILabel *descriptionLabel;

@end

@implementation Story
@synthesize storyImage;
@synthesize titleLabel;
@synthesize descriptionLabel;

    - (id)initWithCoder:(NSCoder *)aDecoder
    {
        self = [super initWithCoder:aDecoder];
        if (self)
        {
            [self.contentView addSubview:self.titleLabel];
            [self.contentView addSubview:self.descriptionLabel];
            [self.contentView addSubview:self.storyImage];

            [self.titleLabel setFont:[UIFont fontWithName:kProximaNovaBold size:15]];
            [self.descriptionLabel setFont:[UIFont fontWithName:kProximaNova size:13]];
            [self.descriptionLabel setTextColor:[UIColor colorWithWhite:140/255.f alpha:1.0]];
            self.descriptionLabel.frame  = CGRectIntegral(self.descriptionLabel.frame);
            self.descriptionLabel.center = roundedCenterPoint(self.descriptionLabel.center);

        }
        return self;
    }

但由于某种原因,它没有设置属性。我必须将它移出 init 方法并将其放在一个单独的方法中,并在调用后调用它:

 dequeueReusableCellWithReuseIdentifier:kCellID forIndexPath:indexPath

然后它会起作用。知道为什么吗?

4

1 回答 1

4

您希望在awakeFromNib:nib 中的所有内容都已实际加载和连接时执行此操作

来自NSObject UIKit Additions的文档

讨论
nib 加载基础架构向从 nib 存档重新创建的每个对象发送 awakeFromNib 消息,但前提是存档中的所有对象都已加载和初始化。

于 2012-10-26T23:50:38.643 回答