所以我正在使用自定义函数来格式化要添加到UICollectionViewCell
的 subview 。它来自Brian Voong的公共(public)项目:https://github.com/purelyswift/facebook_feed_dynamic_cell_content/blob/master/facebookfeed2/ViewController.swift。
func addConstraintsWithFormat(format: String, views: UIView...) {
var viewsDictionary = [String: UIView]()
for (index, view) in views.enumerate() {
let key = "v\(index)"
viewsDictionary[key] = view
view.translatesAutoresizingMaskIntoConstraints = false
}
addConstraints(NSLayoutConstraint.constraintsWithVisualFormat(format, options: NSLayoutFormatOptions(), metrics: nil, views: viewsDictionary))
}
有趣的是,在
UICollectionView
中,我向一个单元格添加了SubView
,并将背景色设置为白色。当我注释掉设置 subview 的背景的行时,背景为白色,而当我取消注释设置 subview 的视觉格式约束的行时,则未设置背景色。这是两条相互干扰的线路:
func chronicleOneClicked(sender: UIButton) {
point1view.backgroundColor = UIColor.whiteColor()
addSubview(point1view)
//When the below is commented the background of point1view disappears
//addConstraintsWithFormat("|-50-[v0]-50-|", views: point1view)
}
当我执行
print(subviews)
时,我看到带有白色背景色的UIView
在 View 堆栈(堆栈顶部)中是最高的。当我打印出subviews[subviews.count-1].backgroundColor
时,我得到的Optional(UIDeviceWhiteColorSpace 1 1)
是我所期望的。很奇怪,因为没有显示颜色。我不确定如何去了解幕后发生的情况以确认在后一种情况下根本没有设置背景。
这一切都发生在
UiCollectionViewCell
的类中,我将其用作我的UICollectionView
单元格之一的类,可以在此处完整查看:https://gist.github.com/ebbnormal/edb79a15dab4797946e0d1f6905c2dd0
这是这两种情况的屏幕截图,第一种情况是
addConstraintsWithFormat
行被注释掉,第二种情况是未注释行:point1subview
的 subview 在白色情况下以白色背景突出显示。这就是我设置 View 的方式。这一切都发生在覆盖
UICollectionViewCell
的类中class myClass : UICollectionViewCell {
var chronicle: BrowsableChronicle? {
didSet{
//etc.
point1.addTarget(self, action: #selector(chronicleOneClicked(_:)), forControlEvents: UIControlEvents.TouchUpInside)
}
}
override init(frame: CGRect) {
super.init(frame: frame)
setupViews()
}
let point1 : PointButtonView = {
let pointView = PointButtonView(frame: CGRectMake(0, 0, 25, 25 ))
return pointView
}()
//NOTE here is where I create the view, whose background doesn't display
let point1view : UIView = {
let pointView = UIView(frame: CGRectMake( 0, 0, 200, 270))
pointView.backgroundColor = UIColor.whiteColor()
let title = UILabel(frame: CGRectMake(0, 0, 200, 21))
title.font = UIFont(name:"HelveticaNeue-Bold", size: 16.0)
pointView.addSubview(title)
let summary = UILabel(frame: CGRectMake(0, 0, 190, 260))
summary.lineBreakMode = NSLineBreakMode.ByWordWrapping
summary.numberOfLines = 4
summary.font = UIFont(name:"HelveticaNeue", size: 12.5)
pointView.addSubview(summary)
let button = UIButton(frame: CGRectMake(0, 200, 190, 30))
button.backgroundColor = UIColor(red:0.00, green:0.90, blue:0.93, alpha:1.0)
pointView.addSubview(button)
pointView.tag = 100
return pointView
}()
//NOTE: here is where I add the subview to the UICollectionViewCell view
func chronicleOneClicked(sender: UIButton){
addSubview(point1view)
addConstraintsWithFormat("H:|-20-[v0]-20-|", views: point1view)
//TODO anytime i add a constraint here the background color leaves!
print(subviews[subviews.count-1].backgroundColor) //Prints white
}
}
更新:我认为可能与这个问题有关:
UITableViewCell subview disappears when cell is selected
选择
UICollectionViewCell
的位置,因此iOS会自动将backgroundColor设置为clear。问题是,我实现了UIView
的此类扩展,以查看何时在didSet
上调用backgroundColor
以及何时将其设置为clear时,将其设置为白色。但是,当我第一次设置 View 的颜色时,它仅在backgroundColor上调用didSet
一次。这是我用来覆盖UIView
类的代码:class NeverClearView: UIView {
override var backgroundColor: UIColor? {
didSet {
print("background color is being set")
if backgroundColor == UIColor.clearColor() {
print("set to a clear color")
backgroundColor = UIColor.whiteColor()
}
}
}
}
最佳答案
您所看到的差异显然是由于视框导致宽度为零或高度为零所致。
让我们解释一下绘图系统是如何工作的。
每个 View 都有一个图层,该图层在其边界内绘制背景色,边界由 View 框架指定。然后绘制每个 subview 。但是,除非将UIView.clipsToBounds
设置为true
,否则 subview 不受框架的限制。
您所看到的意味着容器 View 的框架为零(宽度或高度),但是其 subview 具有正确的框架,因此它们可以正确显示。
发生这种情况的原因有多种,例如:
translatesAutoresizingMaskIntoConstraints
设置为false
到某些系统 View (例如UICollectionView
的内容 View )。 您应该能够使用Xcode中的 View 调试器来调试问题。只需打开您的应用程序,单击查看调试器按钮,然后打印单元格的递归描述。您应该看到一个零帧。
关于ios - 向 subview 添加约束会使背景色不显示,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/38577604/