自定义的collectionCell无法自适应约束

发布于 2022-09-03 09:41:39 字数 1717 浏览 20 评论 0

import UIKit
import SnapKit

class FeatureCollectionViewCell: UICollectionViewCell {
  var itemTitleLabel: UILabel!
  
  // MARK: - Initializer & Release
  override init(frame: CGRect) {
    print("FeatureCollectionViewCell was initialized")
    super.init(frame: frame)
    setupViews()
    setupConstraints()
  }
  
  required init?(coder aDecoder: NSCoder) {
    fatalError("init(coder:) has not been implemented")
  }
  
  deinit {
    print("FeatureCollectionViewCell was released")
  }
  
  // MARK: - Extension Method
  override func setupViews() {
    contentView.backgroundColor = UIColor.grayColor()
    
    itemTitleLabel = UILabel()
    itemTitleLabel.translatesAutoresizingMaskIntoConstraints = false
    itemTitleLabel.text = "Test Test"
    contentView.addSubview(itemTitleLabel)
  }
  
  override func setupConstraints() {
    itemTitleLabel.snp_makeConstraints { (make) in
      make.top.equalTo(contentView).offset(8)
      make.centerX.equalTo(contentView)
    }
  }
  // MARK: - Private Method
  func configureCell(title: String, image: UIImage) {
    itemTitleLabel.text = title
  }
  
  override func preferredLayoutAttributesFittingAttributes(layoutAttributes: UICollectionViewLayoutAttributes) -> UICollectionViewLayoutAttributes {
    let attributes = super.preferredLayoutAttributesFittingAttributes(layoutAttributes)
    let newSize = contentView.systemLayoutSizeFittingSize(UILayoutFittingCompressedSize)
    attributes.frame.size = newSize
    
    return attributes
  }
  
}

我是想通过 systemLayoutSizeFittingSize 获取 contentViewsize ( label的宽高,再加上 label 对于顶部的距离约束),但是却获取的一直是(0, 0)。
PS:没有用 StoryBoard/Xib 。

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

落在眉间の轻吻 2022-09-10 09:41:39

你的约束条件不够,必须要有四个要素。

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文