Swift3 - 视觉格式约束崩溃

Posted

技术标签:

【中文标题】Swift3 - 视觉格式约束崩溃【英文标题】:Swift3 - Visual Format Constraint crashing 【发布时间】:2017-07-20 20:56:26 【问题描述】:

我尝试使用setupViews() 函数中的可视格式向 UICollectionViewCell 添加约束,但是每当我设置它们然后运行代码时,约束就会崩溃并且不显示任何单元格。我得到错误:[LayoutConstraints] Unable to simultaneously satisfy constraints. 知道为什么会这样吗?

import UIKit

class MainController: UICollectionViewController, UICollectionViewDelegateFlowLayout 

override func viewDidLoad() 
    super.viewDidLoad()

    let navBar: UINavigationBar = UINavigationBar(frame: CGRect(x: 0, y: 0, width: view.frame.width, height: 50))
    self.view.addSubview(navBar)
    let navItem = UINavigationItem(title: "Drops")
    navItem.rightBarButtonItem = UIBarButtonItem(title: "Logout", style: .plain, target: self, action: #selector(handleLogout))
    navBar.setItems([navItem], animated: false);

    collectionView?.backgroundColor = UIColor.white
    collectionView?.register(ImageCell.self, forCellWithReuseIdentifier: "cell-id")


override func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int 
    return 1


override func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell 
    let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "cell-id", for: indexPath)
    return cell
 

func handleLogout() 
    let loginController = LoginController()
    present(loginController, animated: true, completion: nil)
  


class ImageCell: UICollectionViewCell 
override init(frame: CGRect) 
    super.init(frame: frame)
    setupViews()
 

let smallCellView: UIImageView = 
    let imgview = UIImageView()
    imgview.translatesAutoresizingMaskIntoConstraints = false
    imgview.backgroundColor = UIColor.purple
    return imgview
 ()

let largeCellView: UIImageView = 
    let imgview = UIImageView()
    imgview.translatesAutoresizingMaskIntoConstraints = false
    imgview.backgroundColor = UIColor.green
    return imgview
 ()

func setupViews()
    //addSubview(smallCellView)
    addSubview(largeCellView)

    addConstraints(NSLayoutConstraint.constraints(withVisualFormat: "H:|-50-[v1]-50-|", options: NSLayoutFormatOptions(), metrics: nil, views: ["v1" : largeCellView]))
    addConstraints(NSLayoutConstraint.constraints(withVisualFormat: "V:|-50-[v1]-50-|", options: NSLayoutFormatOptions(), metrics: nil, views: ["v1" : largeCellView]))

 

required init?(coder aDecoder: NSCoder) 
    fatalError("init(coder:) has not been implemented")
 


【问题讨论】:

因为不能满足约束?该错误将列出冲突的约束,但从您的代码中您没有足够的约束;你已经限制了大视图的水平位置和大小,但没有限制它的垂直位置或大小,你还没有对小视图做任何事情 @Pualw11 我注释掉了 smallCellView 并向 largeCell 添加了垂直约束,出现同样的错误 您需要查看控制台中的冲突约束,并找出您的问题所在。您的问题没有提供足够的信息 @Paulw11 ,控制台将两个约束都列为冲突,但我不明白为什么,从代码中它应该从单元格到边界创建一个 50 像素的边框,对吧? 您是如何创建单元实例的?你是如何在你的集合视图中注册单元类的?我刚刚使用了你的代码,它工作正常。我必须实现init(coder),因为我使用了故事板,但除此之外我没有改变任何东西。您的集合视图中定义的单元格大小是多少?如果小于 100x100,您将遇到约束冲突 【参考方案1】:

您需要确保受约束的视图可以适合内部您的集合视图单元格;即图像视图的顶部/底部/左侧/右侧边距为 50,您的集合视图单元格必须至少 100 x 100(这将导致 0 大小的图像视图)为了避免不可满足的约束错误。

如果您正在使用它,您可以在情节提要中设置单元格大小或实现UICollectionViewDelegateFlowLayoutsizeForItemAt

【讨论】:

以上是关于Swift3 - 视觉格式约束崩溃的主要内容,如果未能解决你的问题,请参考以下文章

NSLayoutConstraint VFL 因为 EXC_BAD_ACCESS 而崩溃

Swift3 - 调试时后台获取崩溃

iOS 应用在导航期间迁移到 swift3 后崩溃

使用致命错误刷新tableview时应用程序崩溃:索引超出范围Swift3

setValue() 的完成导致 Firebase 崩溃,Swift 3

添加约束使应用程序崩溃