10

我在 aUIStackView中包含一个UICollectionViewCell用于表示社交网络上的帖子(类似于 Instagram 单元格的样式)。UIStackView包含一个作者标题(自定义)UIView、一个UIImageView用于内容图像、一个UILabel用于帖子正文和一个UIToolbar用于操作。最终视图如下所示

UICollectionViewCell 的高度是通过设置尺寸单元格来设置的,如下所示:

- (CGSize)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout *)collectionViewLayout sizeForItemAtIndexPath:(NSIndexPath *)indexPath {
      NTVFeedBlogCollectionViewCell *cell = [[NTVFeedBlogCollectionViewCell alloc] initWithFrame:CGRectMake(10.0f, 0.0f, collectionView.frame.size.width - 20.0f, 900000.0)];

      // ...
      // Configure the cell
      // ...

      [cell setNeedsLayout];
      [cell layoutIfNeeded];
      CGSize size = [cell systemLayoutSizeFittingSize:UILayoutFittingCompressedSize];

      return CGSizeMake(CGRectGetWidth(collectionView.frame) - 20.0f, size.height);

}

问题是 UIImageView 似乎增加了 UICollectionViewCell 的大小,而没有增加图像视图的大小。这是我将大图像添加到图像视图时的结果。期望的结果是图像保持 1:1 的纵横比,受限于 UIStackView 的宽度。

正文标签和其余内容之间的间隙大小会根据我使用的图像而变化。这让我相信这只是在考虑单元格大小UIStackView时以某种方式考虑图像大小,因为从视觉上看,图像视图是正确的大小。正如您在发布的第一张图片中看到的那样,当尚未设置图像视图的图像时,单元格布局完美。

这是堆栈视图、图像视图和标签的设置代码:

self.stackView = [[UIStackView alloc] initWithFrame:CGRectZero];
self.stackView.translatesAutoresizingMaskIntoConstraints = NO;
self.stackView.axis = UILayoutConstraintAxisVertical;
self.stackView.distribution = UIStackViewDistributionFill;
self.stackView.alignment = UIStackViewAlignmentFill;
self.stackView.spacing = 10.0f;
self.stackView.layoutMargins = UIEdgeInsetsMake(10.0f, 10.0f, 0.0f, 10.0f);
self.stackView.layoutMarginsRelativeArrangement = YES;

[self addSubview:self.stackView];

[self addConstraints:[NSLayoutConstraint constraintsWithVisualFormat:@"V:|-0-[stackView]-0-|"
                                                             options:0
                                                             metrics:nil
                                                               views:@{@"stackView": self.stackView}]];

[self addConstraints:[NSLayoutConstraint constraintsWithVisualFormat:@"H:|-0-[stackView]-0-|"
                                                             options:0
                                                             metrics:nil
                                                               views:@{@"stackView": self.stackView}]];

self.imageView = [[UIImageView alloc] initWithFrame:CGRectZero];

[self.imageView setImage:[UIImage imageNamed:@"sample_image.png"]];

self.imageView.translatesAutoresizingMaskIntoConstraints = NO;
self.imageView.contentMode = UIViewContentModeScaleAspectFill;
self.imageView.clipsToBounds = YES;
self.imageView.layer.masksToBounds = YES;
self.imageView.backgroundColor = [UIColor greenColor];

[self.imageView setContentHuggingPriority:UILayoutPriorityDefaultHigh forAxis:UILayoutConstraintAxisVertical];
[self.imageView setContentCompressionResistancePriority:UILayoutPriorityDefaultLow forAxis:UILayoutConstraintAxisVertical];

[self.stackView addArrangedSubview:self.imageView];

[self.stackView addConstraint:[NSLayoutConstraint constraintWithItem:self.imageView
                                                           attribute:NSLayoutAttributeHeight
                                                           relatedBy:NSLayoutRelationEqual
                                                              toItem:self.stackView
                                                           attribute:NSLayoutAttributeWidth
                                                          multiplier:1.0f
                                                            constant:0.0f]];

self.bodyLabel = [[UILabel alloc] initWithFrame:CGRectZero];
[self.bodyLabel setContentHuggingPriority:UILayoutPriorityDefaultHigh forAxis:UILayoutConstraintAxisVertical];
[self.bodyLabel setContentCompressionResistancePriority:UILayoutPriorityDefaultLow forAxis:UILayoutConstraintAxisVertical];
self.bodyLabel.font = [UIFont ntv_lightFontWithSize:17.0f];
self.bodyLabel.textColor = [UIColor whiteColor];
self.bodyLabel.numberOfLines = 0;

self.bodyLabel.text = @"While the stack view allows you to layout its contents without using Auto Layout directly, you still need to use Auto Layout to position the stack view, itself.";
[self.stackView addArrangedSubview:self.bodyLabel];

self.accessoryView = [[NTVAccessoryView alloc] initWithFrame:CGRectZero];
self.accessoryView.viewModel = [NTVAccessoryManagerViewModel_Stubbed new];

[self.stackView addArrangedSubview:self.accessoryView];

有任何想法吗?

4

2 回答 2

13

我们想通了!如文档中所述,UIStackView正在使用intrinsicContentSizearrangedSubviews计算其高度。

UIImageView将其报告intrinsicContentSize为图像的整体大小(如您所料)。UIStackView忽略了我的高度限制,使用intrinsicContentSize了图像视图。

为了解决这个问题,我创建了一个UIImageView子类,它允许调用者设置intrinsicContentSize. 此代码可在此处找到。

然后,在我的布局传递完成后,UICollectionViewCell我正在设置 UIImageView 子类:intrinsicContentSize

- (void)layoutSubviews {
    [super layoutSubviews];

    // Constrain the image view's content size to match the stackview's width.
    self.imageView.constrainedSize = CGSizeMake(self.stackView.frame.size.width, self.stackView.frame.size.width);

    [super layoutSubviews];

}

于 2015-10-27T15:59:57.737 回答
0

如果您不想以编程方式执行此操作,另一种解决方案是垂直使用 2 个 UIStackViews。包含 UIImageView 的顶部 UIStackView 将其高度约束设置为占据超级视图高度的 70%,并让底部 UIStackView 紧挨着顶部一个,因此它将占据剩余 30% 的高度。

这样,无论你的图像有多大,它总是占据高度的 70%。

于 2017-02-28T10:50:52.340 回答