将NSLayoutConstraints添加到UISegmentedControl会导致UISegmentedControl消失

时间:2015-10-02 18:45:13

标签: swift ios8 autolayout uisegmentedcontrol nslayoutconstraint

我有一个以编程方式定义的UISegmentedControl。

我正在尝试添加布局约束,以便在我的iPad旋转时,分段控件在旋转视图中正确调整大小而不是溢出屏幕。

我应用以下约束:

        streamSegmentedControl.translatesAutoresizingMaskIntoConstraints = false

    let segmentedControlWidth = NSLayoutConstraint(item: streamSegmentedControl,
        attribute: .Width,
        relatedBy: .Equal,
        toItem: self.containerView,
        attribute: .Width,
        multiplier: 1.0,
        constant: -10.0)

    containerView.addConstraint(segmentedControlWidth)

我的UIsegmentControl定义如下:

      streamSegmentedControl = UISegmentedControl(items: ["Today's Events", "Past Events"])
    streamSegmentedControl.frame = CGRectMake(-10,containerView.frame.size.height*0.3,containerView.frame.width+20,40)
    streamSegmentedControl.selectedSegmentIndex = 0
    streamScope = "today"
    streamSegmentedControl.setTitleTextAttributes(segmentedControlFont as [NSObject : AnyObject], forState: .Normal)
    streamSegmentedControl.backgroundColor = UIColor.colorFromClass("background")
    streamSegmentedControl.tintColor = UIColor.colorFromClass("default")


    streamSegmentedControl.addTarget(self, action: "changeStreamScope:", forControlEvents: UIControlEvents.ValueChanged)
    containerView.addSubview(streamTableView)
    containerView.addSubview(streamSegmentedControl)

我没有收到错误,但在运行时,我的分段控件消失了。不知道我在这里缺少什么,因为我过去只在故事板中做过自动布局。

我只想调整分段控件的宽度,所以我假设我只需要一个布局约束。

任何人都可以给我一些方向吗?感谢。

1 个答案:

答案 0 :(得分:1)

您至少需要添加三个约束。领先,顶部和尾随。 我很快就很弱,但你的约束应该是这样的。

let segmentedControlTop = NSLayoutConstraint(item: streamSegmentedControl,
        attribute: .Top,
        relatedBy: .Equal,
        toItem: self.containerView,
        attribute: .Top,
        multiplier: 1.0,
        constant: 0.0)

let segmentedControlLeading = NSLayoutConstraint(item: streamSegmentedControl,
        attribute: .Leading,
        relatedBy: .Equal,
        toItem: self.containerView,
        attribute: .Leading,
        multiplier: 1.0,
        constant: 0.0)

let segmentedControlTrailing = NSLayoutConstraint(item: streamSegmentedControl,
        attribute: .Trailing,
        relatedBy: .Equal,
        toItem: self.containerView,
        attribute: .Trailing,
        multiplier: 1.0,
        constant: 0.0)

containerView.addConstraint(segmentedControlTop)
containerView.addConstraint(segmentedControlLeading)
containerView.addConstraint(segmentedControlTrailing)

如果你想保持与superview的5点偏移,尝试使用5点的常量和尾随值进行游戏。