web-dev-qa-db-ja.com

UICollectionViewCellサブクラスinitは実行されません

このようにviewDidLoadにコレクションビューを追加しました...

self.collectionView = [[UICollectionView alloc] initWithFrame:CGRectMake(0, 0, 10, 10) collectionViewLayout:flowLayout];
self.collectionView.delegate = self;
self.collectionView.dataSource = self;
self.collectionView.backgroundColor = [UIColor whiteColor];
[self.collectionView registerClass:[CameraCell class] forCellWithReuseIdentifier:CameraCellReuseIdentifier];
[self.collectionView setTranslatesAutoresizingMaskIntoConstraints:NO];
[self.view addSubview:self.collectionView];

そして、私はこのような初期化を持つCameraCellと呼ばれるUICollectionViewCellサブクラスを持っています...

- (id)init
{
    self = [super init];
    if (self) {
        // Add customisation here...
        [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(imageChanged:) name:@"image" object:nil];

        self.contentView.backgroundColor = [UIColor yellowColor];

        self.imageView = [[UIImageView alloc] initWithFrame:CGRectZero];
        self.imageView.contentMode = UIViewContentModeScaleAspectFill;
        self.imageView.clipsToBounds = YES;
        [self.imageView setTranslatesAutoresizingMaskIntoConstraints:NO];
        [self.contentView addSubview:self.imageView];

        NSDictionary *views = NSDictionaryOfVariableBindings(_imageView);

        [self.contentView addConstraints:[NSLayoutConstraint constraintsWithVisualFormat:@"V:|[_imageView]|"
                                                                                 options:0
                                                                                 metrics:nil
                                                                                   views:views]];

        [self.contentView addConstraints:[NSLayoutConstraint constraintsWithVisualFormat:@"|[_imageView]|"
                                                                                 options:0
                                                                                 metrics:nil
                                                                                   views:views]];
    }
    return self;
}

しかし、アプリを実行するとコレクションビューが表示され、スクロールできますが、セルは表示されません。セルの初期化にブレークポイントを追加しましたが、呼び出されません。オーバーライドする必要がある別のメソッドはありますか?

[〜#〜] edit [〜#〜]

CellForItemAtIndexPathにセルを記録すると...

- (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath
{
    CameraCell *cell = [collectionView dequeueReusableCellWithReuseIdentifier:CameraCellReuseIdentifier forIndexPath:indexPath];

    NSLog(@"%@", cell);

    return cell;
}

正しいクラスが表示されます...

<CameraCell: 0x1f07ba30; baseClass = UICollectionViewCell; frame = (0 20; 320 280); layer = <CALayer: 0x1f07bb40>> 
27
Fogmeister

実装する必要があるメソッドは- (instancetype)initWithFrame:(CGRect)rectです

43
Alejandro

最近iOS7 SDKでこれを試しましたが、initWithCoderが呼び出されなかったため、initWithFrameをオーバーライドする必要がありました。

27
Archit Baweja

セルがStoryBoardからロードされる場合、次のようにイニシャライザーをオーバーライドする必要があります。

スイフト

override init?(coder aDecoder: NSCoder) {
  super.init(coder:aDecoder)
  //You Code here
} 

Objective-C

- (id)initWithCoder:(NSCoder *)aDecoder {
  self = [super initWithCoder:aDecoder];
  //You code here
}

ペン先からロードする場合は、次のように初期化子をオーバーライドする必要があります。

スイフト

override init(frame: CGRect) {
  super.init(frame:frame)
  //You Code here
} 

Objective-C

- (id)initWithFrame:(CGRect)frame {
  self = [super initWithFrame:frame];
  //You code here
}
15
Barlow Tucker