我在另一个视图的容器视图中有一个CollectionView(子类CollectionViewController)。 CollectionViewCells在Interface Builder中定义,包含一个带有更多子视图的UIView。
我的收藏视图包含7个部分,每个部分包含1个项目。这些部分有一个定义的插图和大小(通过CollectionViewDelegateFlowLayout)。每个单元格应该填充集合视图的大小,而不包含插入。
问题似乎是单元格内部的视图未正确呈现。使用约束将其设置为固定到每一侧,但这似乎不起作用。
我已经尝试记录单元格本身的宽度和高度与单元格内部的视图。当我滚动集合视图时,所有奇数单元格显示内容的大小远小于单元格的大小。这也适用于第一个偶数单元格,但直到我滚动到第二个偶数单元格。由于这种尺寸差异,细胞的子视图根本不会呈现.ui
我的IB设置:
CollectionViewController:
// MARK: CollectionViewController
class DayViewController: UICollectionViewController {
// MARK: Properties
private let reuseIdentifier = "DayCell"
// MARK: CollectionViewDataSource
override func numberOfSectionsInCollectionView(collectionView: UICollectionView) -> Int {
return 7
}
override func collectionView(collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
return 1
}
override func collectionView(collectionView: UICollectionView, cellForItemAtIndexPath indexPath: NSIndexPath) -> UICollectionViewCell {
let cell = collectionView.dequeueReusableCellWithReuseIdentifier(reuseIdentifier, forIndexPath: indexPath) as! DayViewCell
NSLog("%f — %f", cell.bounds.width, cell.content.bounds.width)
return cell
}
}
// MARK: CollectionViewDelegateFlowLayout
extension DayViewController : UICollectionViewDelegateFlowLayout {
func collectionView(collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, sizeForItemAtIndexPath indexPath: NSIndexPath) -> CGSize {
// return CGSize(width: collectionView.bounds.width - 40.0, height: collectionView.bounds.height - 40.0)
return CGSize(width: collectionView.bounds.width - 40.0, height: collectionView.bounds.height - 40.0)
}
func collectionView(collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, insetForSectionAtIndex section: Int) -> UIEdgeInsets {
return UIEdgeInsets(top: 20.0, left: 20.0, bottom: 20.0, right: 20.0)
}
}
CollectionViewCell:
class DayViewCell: UICollectionViewCell {
override var bounds: CGRect {
didSet {
contentView.frame = bounds
}
}
@IBOutlet weak var content: UIView!
@IBOutlet weak var progress: UIView!
@IBOutlet weak var rank: UILabel!
@IBOutlet weak var remainingRep: UILabel!
override func drawRect(rect: CGRect) {
super.drawRect(rect)
layer.cornerRadius = 5
layer.shadowOffset = CGSize(width: 0, height: 2)
layer.shadowOpacity = 0.5
layer.shadowColor = UIColor.blackColor().CGColor
layer.shadowRadius = 5
layer.masksToBounds = false
clipsToBounds = false
}
override func layoutSubviews() {
super.layoutSubviews()
content.layer.cornerRadius = 5
content.clipsToBounds = true
progress.frame = CGRect(x: 0, y: 0, width: 100, height: 22)
}
}
正在运行:(第一次渲染时为奇数格/偶数格,第二次渲染时为偶数格)
答案 0 :(得分:1)
您提到UICollectionViewController
位于容器视图中。它是否设置正确,以便能够获得所有预期的UIViewController
来电,例如viewWillAppear()
?
如果你可以发布一个演示问题的示例项目,我很乐意尝试调试它。
关于您在此处发布的代码的一些想法:
在DayViewCell代码中,覆盖是非常不寻常的
bounds
设置框架。这让我很担心。
drawRect()
不是设置阴影和角落的地方
半径。这应该在init(frame:)
和/或init?(coder:)
中完成。
在drawRect()
中执行此操作非常昂贵,可能会影响您的帧速率
滚动时。
我还将layoutSubviews()
中的所有内容移动到了
init
方法。每个运行代码都没有优势
视图布局的时间。
答案 1 :(得分:1)
感谢您提供源代码。一些想法:
看起来你正在搞乱自动布局大小类。我不确定你是故意这样做的。
选择“容器视图”,然后选择“属性”检查器。在底部,您会看到一些复选框。这表明您只为某些尺寸类设置了自动布局设置。
进入文件检查器并禁用大小类。
你会注意到事情开始发挥作用。
如果你只为iPhone(而非iPad)开发并且只是纵向开发,你可能应该只禁用大小类。如果你想为其他东西设计,可能有助于研究尺寸等级。