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
Try below code to Rotate the UISlider in Vertical Position..
//To rotate the slider in Vertical Position CGAffineTransform sliderRotation = CGAffineTransformIdentity; sliderRotation = CGAffineTransformRotate(sliderRotation, -(M_PI / 2)); sliderBrightness.transform=sliderRotation;