ios – 向子视图添加约束使得背景颜色不显示

前端之家收集整理的这篇文章主要介绍了ios – 向子视图添加约束使得背景颜色不显示前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
所以我使用一个自定义函数来格式化一个我添加到UICollectionViewCell的子视图.来自Brian Voong的公共项目: 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添加到单个单元格,并将背景颜色设置为白色.当我注释掉设置子视图背景的行时,背景是白色的,当我取消注释为子视图设置视觉格式的约束的行时,不设置背景颜色.

这是两条相互交错的线路:

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)
}

当我打印(子视图)我看到,具有白色背景颜色的UIView是视图堆栈(堆栈顶部)中最高的.当我打印出subviews [subviews.count-1] .backgroundColor我得到可选(UIDeviceWhiteColorSpace 1 1)这是我期望的.这是奇怪的,因为颜色不显示.

我不知道如何看待幕后发生的事情,以确认在后一种情况下背景是被设定的.

这一切都发生在UiCollectionViewCell的一个类中,我正在使用它作为我的UICollectionView单元格的类,可以在这里完整地查看:

https://gist.github.com/ebbnormal/edb79a15dab4797946e0d1f6905c2dd0

这是两种情况下的屏幕截图,第一种情况是将addConstraintsWithFormat的行注释掉,第二种情况是取消注释的位置:在第一种情况下,point1subview的子视图以白色背景突出显示.

这是我如何设置视图.这一切都发生在覆盖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,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,200,270))
      pointView.backgroundColor = UIColor.whiteColor()
      let title = UILabel(frame: CGRectMake(0,21))
      title.font = UIFont(name:"HelveticaNeue-Bold",size: 16.0)

      pointView.addSubview(title)
      let summary = UILabel(frame: CGRectMake(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,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设置为清除.问题是,我实现了UIView的这个类扩展,以查看在setColor上调用了setSet,当它设置为clear时,我将其设置为白色.但是,当我首先设置视图的颜色时,它只会在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()
         }
      }
   }
}

解决方法

您所看到的差异显然是由视角造成的,导致零宽度或零高度.

我们来解释绘图系统的工作原理.

每个视图都有一个图层,它在其边界中绘制其背景颜色,这些边界由视图框架指定.然后画出每个子视图.但是,除非将UIView.clipsToBounds设置为true,否则子视图不受框架限制.

你看到的意思是一个容器视图有一个零帧(宽或高),但其子视图具有正确的帧,因此它们被正确显示.

这有可能出现多种原因,例如:

>您正在将某些系统视图(例如UICollectionView的内容视图)将AutotoresizingMaskIntoConstraints设置为false.
>你有一个约束冲突,导致一些重要的约束被删除(你应该看到一个警告).
>你缺少一些限制.具体来说,我看不到你设置了垂直限制.

您应该能够使用Xcode中的视图调试器调试问题.只需打开您的应用程序,单击视图调试器按钮并打印单元格的递归描述.你应该看到一个零帧.

原文链接:https://www.f2er.com/iOS/336347.html

猜你在找的iOS相关文章