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
You can't use storyboard to build up a UISlider. Build up UISlider by coding.
slider = [[UISlider alloc] initWithFrame:CGRectMake(640, 150, 600, 400)]; [slider.layer setAnchorPoint:CGPointMake(0.0f, 0.0f)]; slider.transform = CGAffineTransformMakeRotation(M_PI/2); [self.view addSubview:slider];