Questions tagged [uislider]

A UISlider object is a visual control used to select a single value from a continuous range of values. Sliders are always displayed as horizontal bars. An indicator, or thumb, notes the current value of the slider and can be moved by the user to change the setting. Available in iOS 2.0 and later in UIKit.

UISlider commonly refers to the UISlider control used in iOS programming.

1610 questions
0
votes
1 answer

IPhone UISliders affect each others

For example, there are two sliders on the screen, an upper one and the other lower one. I want to implement the following effect. User slide the upper slider to value 50, then the lower slider will slide to value 50 itself simultaneously(with no…
JackieLam
  • 668
  • 1
  • 7
  • 20
0
votes
2 answers

Masking the Background Image

I have an BackGroundImage which is "image1.png" and another image "image2.png". I have a UIslider... When i move the slider the background image has to diappear .. How to implement it?
Vanitha
  • 91
  • 1
  • 10
0
votes
1 answer

iOS slider to change a color changes wrong label

Am using Xcode 4.5, targeting iOS5 and above. I am updating an app, using Storyboard for all scenes. Have a previous XIB and controller that I converted, but it is not functioning the same way. The controller allows changing the color of text and…
Marc Watson
  • 255
  • 3
  • 16
0
votes
1 answer

Slider showing wrong values

Hello : Im developping an application and I'd like to display the value of a UISlider as the user moove it along the bar. I created an IBOutlet linked in Interface Builder to an UILabel and a IBAction linked in Interface Builder to the slider. They…
WizLiz
  • 2,068
  • 5
  • 25
  • 39
0
votes
2 answers

what is the best practice for dealing with long text in fixed UILabel

i have a table holding custom cells. in each cell there is a UILabel, which should show a text with a non fixed length. the label has a maximum size, let's say (150,30). it can show only one line of text. What is the best practice in dealing with…
David Ben Ari
  • 2,259
  • 3
  • 21
  • 40
0
votes
2 answers

how to store slider values in ios

Hi I am using uislider and get the values in label. now i try to save the slider values. I don't know how to do this. If anybody knows please share the code. This is my code for slider changed. -(IBAction)sliderChanged:(id)sender { …
Jaikannan
  • 57
  • 11
0
votes
1 answer

XCode : Slider Object type when passed into a function

I am trying to pass a slider object into a function and change its value void sliderLoad (NSString * sliderKey, int sliderValue, id sliderOutput, id sliderSliderOutput) { NSUserDefaults * sliderSavedValue = [NSUserDefaults…
Dayn Goodbrand
  • 611
  • 7
  • 16
0
votes
1 answer

Change UISlider value using minimumImageValue / maximumImageValue

I'd like to have a UISlider respond to tapping on the minimumValueImage and/or maximumValueImage, setting the value to either minimum or maximum. I can't seem to find a 'normal' approach for this scenario, so I came up with this solution. I'm…
fguchelaar
  • 4,779
  • 23
  • 36
0
votes
2 answers

iOS - How to control UIBezierPath drawing with UISlider?

I want to control the drawing of my UIBezierPath using a UISlider. The aim is to be able to scrub the timeline (UISlider) and cause the line (UIBezierPath) to draw based on the current position of the slider. So that when I scrub forward the path…
damien murphy.
  • 371
  • 2
  • 16
0
votes
2 answers

How to set the UISlider slide range?

How to set the UISlider slide range? If the UISlider'range is [0,100],How to set the UISlider slide between range[10,90]? Many thanks~
matrix1024
  • 27
  • 1
  • 8
0
votes
1 answer

Increment UISlider by 0.2 in range 0 to 2.0

Possible Duplicate: Increment UISlider by 1 in range 1 to 100 I am new to iPhone, How do I have my UISlider go from 0 to 2 in increments of 0.2? slider = [[UISlider alloc] init]; [slider addTarget:self action:@selector(sliderChange:)…
Krunal
  • 6,440
  • 21
  • 91
  • 155
0
votes
1 answer

UISlider is not smooth on first generation iPad

I am developing an iPad application and in my application I have used UISlider and I have tested my app in Ipad1 but it is not responding very smooth. But, the same application is responding very smooth in iPad 2nd gen. In iPad first gen, every…
btmanikandan
  • 1,923
  • 2
  • 25
  • 45
0
votes
1 answer

UISlider alpha issue

I'm want to figure out such an issue: I have a UIView dervied class in which there are several controls. Some of them must appear and disappear depending on selected mode. This is made by means of setting aplha value to respected component. All…
Denis
  • 433
  • 6
  • 14
0
votes
1 answer

iOS -Setting ScrollView Current Page

I am working on a project in which I need a scrollview to show a number of images and I allow user to set a definite picture from scrollview as a favorite one and save favorites in tableview In order to get it again as user wish . My problem is…
Shymaa Othman
  • 239
  • 1
  • 3
  • 16
0
votes
1 answer

Custom UISLider , setThumbImageForState changes

This is screen shot of the control... http://www.flickr.com/photos/87673882@N02/8025480151/in/photostream This is a custom slider that look like in highlighted and normal state.. This, control is working fine upto ios5.1 ,but from ios6 the program…
user1687810
  • 85
  • 2
  • 6
1 2 3
99
100