Vertical UISlider in iOS with autolayout

后端 未结 10 1884
难免孤独
难免孤独 2021-02-07 07:22

As per my iPad app requirement, i\'ve to show the UISlider vertically.
I\'m using iOS7 compiler and deployment target is iOS6.
In the story board I added horizontal UISl

10条回答
  •  迷失自我
    2021-02-07 07:44

    This is an old topic, but here is a Swift solution with autolayout constraints in storyboard and nothing else.

    1/ You need to add rotation to the IBOutlet:

    @IBOutlet weak var mySlider: UISlider! {
        didSet {
            mySlider.transform = CGAffineTransform(rotationAngle: -CGFloat.pi/2)
        } // didSet
    } // IBOutlet
    

    2/ Define in storyboard the constraints, keeping in mind that the Slider will be rotated around its center.

    For instance if you want to locate mySlider on the left side of myView, you need three constraints.

    1. myView.Leading = mySlider.CenterX - 20
    2. mySlider.width = myView.Height (with a multiplier of 0.8 for instance)
    3. mySlider.CenterY = myView.CenterY

    mySlider will of course appear horizontal in storyboard, but will have the correct sizing, and the center will be correctly positioned.

提交回复
热议问题