Автоматическая компоновка в UICollectionViewCell не работает

У меня есть простой UICollectionView с ячейками, которые имеют один UITextView. UITextView привязан к краям ячейки, поэтому они должны оставаться того же размера, что и размер ячейки.

Проблема, с которой я сталкиваюсь, заключается в том, что по какой-то причине эти ограничения не работают, когда я указываю размер ячейки через collectionView: layout: sizeForItemAtIndexPath:.

У меня размер ячейки установлен на 320x50 в Раскадке. Если я верну размер, размер которого в 2 раза превышает размер ячейки с sizeForItemAtIndexPath: UITextView остается той же высоты, несмотря на установленные мной ограничения. Я использую Xcode 6 GM.

Мой код контроллера просмотра:

@implementation TestViewController

- (void)viewDidLoad
{
    [super viewDidLoad];

    self.collectionView.delegate = self;
    self.collectionView.dataSource = self;
}

- (void)viewDidAppear:(BOOL)animated
{
    [super viewDidAppear:animated];

    UICollectionViewCell *c = [self.collectionView cellForItemAtIndexPath:[NSIndexPath indexPathForItem:0 inSection:0]];

    NSLog(@"%f", c.frame.size.height);

    UITextView *tv = (UITextView *)[c viewWithTag:9];
    NSLog(@"%f", tv.frame.size.height);

}

- (NSInteger)collectionView:(UICollectionView *)collectionView numberOfItemsInSection:(NSInteger)section
{
    return 1;
}

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

    return cell;
}

- (CGSize)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout *)collectionViewLayout sizeForItemAtIndexPath:(NSIndexPath *)indexPath
{
    UICollectionViewFlowLayout *flowLayout = (UICollectionViewFlowLayout *)collectionView.collectionViewLayout;

    CGSize size = flowLayout.itemSize;

    size.height = size.height * 2;

    return size;
}

@end

Те журналы в viewDidAppear: дайте мне вывод:
100,00000
50,00000
Как вы можете видеть, высота UITextView не изменяется с высотой ячейки.


Здесь снимок экрана раскадровки, настроенной с UITextView, ограниченным в UICollectionViewCell:

enter image description here

Я знаю, что использование ограничений автоматического макета отлично работает с UITableViewCells и динамическим изменением размера. Я понятия не имею, почему он не работает в этом случае. У кого-нибудь есть идеи?

Ответ 1

Ну, я только что посмотрел на форумах разработчиков iOS. По-видимому, это ошибка в iOS 8 SDK, работающем на устройствах iOS 7. Обходной путь должен добавить следующее к вашему подклассу UICollectionViewCell:

- (void)setBounds:(CGRect)bounds {
    [super setBounds:bounds];
    self.contentView.frame = bounds;
}
override var bounds: CGRect {
    didSet {
      contentView.frame = bounds
    }
}

Ответ 2

Эквивалентный код Swift:

override var bounds: CGRect {
    didSet {
      contentView.frame = bounds
    }
}

Ответ 3

Вот решение, если вы не подклассифицируете UICollectionViewCell. Просто добавьте две строки под cellForItemAtIndexPath: после dequeueReusableCellWithReuseIdentifier:

Obj-C

[[cell contentView] setFrame:[cell bounds]];
[[cell contentView] setAutoresizingMask:UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight];

Swift - 2.0

cell.contentView.frame = cell.bounds
cell.contentView.autoresizingMask = [.FlexibleWidth, .FlexibleHeight]

Ответ 4

Swift 2.0:

cell.contentView.frame = cell.bounds
cell.contentView.autoresizingMask = [UIViewAutoresizing.FlexibleWidth, UIViewAutoresizing.FlexibleHeight]