32

我已经像这样在 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;
}

但是当我运行应用程序时,集合视图就在那里,我可以滚动它,但我看不到任何单元格。我在单元格的 init 中添加了一个断点,它永远不会被调用。我必须覆盖另一种方法吗?

编辑

当我在 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>> 
4

5 回答 5

47

您需要实现的方法是- (instancetype)initWithFrame:(CGRect)rect

于 2013-05-13T22:01:51.243 回答
28

我最近在 iOS7 SDK 中尝试过这个,我不得不重写initWithCoder,因为initWithFrame从未被调用过。

于 2013-09-19T02:03:48.607 回答
22

如果单元格是从 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
}

如果您从 nib 加载,那么您将需要像这样覆盖初始化程序:

迅速

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

Objective-C

- (id)initWithFrame:(CGRect)frame {
  self = [super initWithFrame:frame];
  //You code here
}
于 2016-08-09T22:23:56.287 回答
1

我知道这个问题已经很老了,但我个人很懒,想从某个地方复制粘贴代码。不幸的是,上面没有 100% 正确的解决方案,所以我编写了通用模式(对于基于 IB 和基于代码的单元)

    override init(frame: CGRect) {
        super.init(frame: frame)
        commonInit()
    }
    
    required init?(coder: NSCoder) {
        super.init(coder: coder)
        commonInit()
    }
    
    override func awakeFromNib() {
        commonInit()
    }
    
    private func commonInit() {
        
    }
于 2021-06-28T12:40:46.147 回答
-1

就我而言,当我用于[[UICollectionView alloc] initWithFrame:CGRectMake(0, 0, 10, 10) collectionViewLayout:flowLayout]以编程方式实例化 collectionView 时,initWithFrame从未被调用过,但initWithFrame:(CGRect)frame collectionViewLayout:(UICollectionViewLayout *)layout确实如此。

于 2015-05-18T09:27:59.077 回答