0
votes
1answer
26 views
how to show value of UISlider as Interger
now it show as float how to show it as integer
sliderCtl = [[UISlider alloc] initWithFrame:frame];
sliderCtl.minimumValue = 1;
sliderCtl.maximumValue = 15;
sliderCtl.continuous = NO;
…
0
votes
0answers
8 views
UISlider change value when tapped
Usually you need to hold the thumb image and move it on the slider, is there any property of UISlider or a way to move the thumb image i.e. change value when tapped on the slider
0
votes
2answers
115 views
How to get the center of the thumb image of UISlider
I'm creating a custom UISlider to test out some interface ideas. Mostly based around making the thumb image larger.
I found out how to do that, like so:
UIImage *thumb = [UIImage …
0
votes
1answer
69 views
how do i handle uislider’s touch event in iphone?
i want to fire a timer as user slides the slider when the touch ends.
is there a way to handle touch events of uislider?
0
votes
3answers
325 views
How to create an iPod-esque UISlider
Does anyone have a quick way to make a UISlider that looks like the ones in the iPod app (think scrubber/volume control). Basically I need something that looks exactly like an MPVolumeView, but …
0
votes
1answer
46 views
UISlider in UIBarButtonItem impacts animation behavior
Hi all
In IB, I set a view MyView with an UIToolBar and I drop an UISlider on it. IB automatically embeds it in an UIBarButtonItem and sets its view with the UISlider.
I display this MyView in a …
0
votes
0answers
9 views
NSTimeInterval from UISlider
How can I make the UISlider value into an NSTimeInterval to use in "scheduledTimerWithTimeInterval" when I use my NSTimer?
thanks
0
votes
0answers
11 views
jquery slider -
hello,
I have been implementing the jquery slider with the values using climate months.. I have to problem getting the values from January to April.. but the problem lies when the values will be from …
1
vote
1answer
71 views
Customize color of UISlider in iPhone app
I am using a slider in my app. It has the default color black I want to change it to brown.
I followed the 'Changing sliders appearance in SDK help'
I used the code
NSString *path = [[NSBundle …
0
votes
3answers
221 views
How to Customize UISlider ?
I understand how you can have a minimum track and maximum track image, and how it can be stretchable. However, for my needs, that might not be enough control.
I have a situation where on the left …
0
votes
1answer
41 views
why uislider calling a method twice?
i have set an ibaction(touch up inside) to uislider.when i slide the slider and moves my finger up it is called twice.anyone knows about it? or if someone knows about how to call a method when lifting …
0
votes
1answer
119 views
JQuery SelectToUISlider Issues
Hopefully this hasn't been asked before as just a slider question, but I couldn't find an answer when already browsing questions. So, here goes: I have a SelectToUISlider …
0
votes
1answer
42 views
how to save slidervalue and label value in nsuserdefaults or any other efficient way?
i have a view with one slider and a label.i am showing a countdown on label and setting time on label using slider.now suppose i have started the timer so the label's value is decreasing every minute …
0
votes
2answers
43 views
displaying slider value
i am using jquery slider . Is there any default function to display slider value under slider object
0
votes
1answer
56 views
Jquery UI Slider - Input value truncates 3.40 -> 3.4
Hello Developers,
I am trying to resolve an issue. When I put in stepping, lets say .01 everything works great. However, if it lands on 1 it prints 1 instead of 1.00, as well as 3.40 prints as 3.4.
…
