Tagged Questions

UISlider commonly refers to the UISlider control used in iOS programming, or the jQuery UI Slider plugin.

learn more… | top users | synonyms

14
votes
5answers
711 views

How to add a subview to a UITableViewCell and resize it while in editing mode?

Edit: I'm starting a bounty on this one, as I'm looking for a "cleaner" solution with a UITableViewCell subclass, rather than messing with the UITableView delegate and datasource. Ideally, I'd like to ...
14
votes
2answers
940 views

UISlider with variable scrubbing speeds (like iPod app)

Apple's iPod (Music) app has a slider (UISlider, I presume) with variable scrubbing speeds: the further away from the slider you drag vertically, the smaller the proportion of your horizontal dragging ...
12
votes
3answers
5k views

Change iPhone UISlider bar image

I'm using a UISlider in my app but I'd like to use a custom "look-and-feel" for it. I have changed the thumb to my own image but is there a way to change the bar also? I have a bar image I would ...
9
votes
1answer
307 views

UISlider ignores alpha when set to 0.5

Why does the UISlider view ignore the alpha view when set to 0.5? Code: for (int i = 0; i < 3; i++) { UISlider *slider = [[[UISlider alloc] initWithFrame:CGRectMake(0, i ...
8
votes
2answers
3k 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 ...
7
votes
1answer
4k views

how to put UISlider vertical?

I want to put uislider in verticaly.i have no idea about this.so please help me for this.
6
votes
3answers
3k views

UISlider with ProgressView combined

Is there an apple-house-made way to get a UISlider with a ProgressView. This is used by many streaming applications e.g. native quicktimeplayer or youtube. (Just to be sure: i'm only in the ...
6
votes
3answers
1k views

How to make UISlider's “track” invisible?

I'm trying to emulate Apple's "Slide to Unlock" feature in my application. I get to this point (image below), but as you can see the UISlider's "track" is visible and is covering up my text. Is ...
5
votes
5answers
3k views

How to make UISlider output nice rounded numbers exponentially?

I am implementing a UISlider a user can manipulate to set a distance. I have never used the CocoaTouch UISlider, but have used other frameworks sliders, usually there is a variable for setting the ...
5
votes
1answer
1k views

How can i make a Vertical UISlider?

How can I make a vertical UISlider? I saw it in one of the applications and was trying to duplicate it. But seems difficult, does anyone know how?
5
votes
4answers
3k 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 ...
5
votes
9answers
5k views

UISlider returns two Touch Up Inside events, why does that happen?

I have a slider that I'm using to set a float value somewhere. I connect Value Changed to a method in my viewController. That part works fine. I need to know when the user starts touching the ...
4
votes
1answer
856 views

Implementing steps/snapping UISlider

I am trying to implement some form of snapping or steps with the UISlider. I have written the following code but it does not work as smooth as I hoped for. It works, but when the I slide it upwards it ...
4
votes
3answers
579 views

Customizing a slider control

I want to customize the slider control but can't find any thing to apply, the slider I want to make should be something like the following image. Please any one suggest me how can I make it.... .
4
votes
2answers
1k views

Gesture problem: UISwipeGestureRecognizer + UISlider

Got a gesture related problem. I implemented UISwipeGestureRecognizer to get swipe left and right events and that is working fine. However the problem I'm facing is that the UISlider's I have in the ...
4
votes
1answer
386 views

How should I store percentage values in Core Data that are read off UISliders?

Sliders are my app's primary user interaction element (go figure...). I use them to record percentage values which are then stored as Readings in my Core Data store. Based on the nature of percentage ...
4
votes
2answers
1k views

Custom Range/Variable Set with jQuery UI Slider

I wanted to see if I could make a custom data set to use with jQuery UI Slider. I'm working on a site that has dress sizes that come in the range of: [ 0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 16W, 18W, ...
3
votes
3answers
63 views

Setting slider to max value

I am creating an application of light in which i am displaying image of light. On light i am changing the brightness of light. If i set my slider minimum and maximum value as slider.minimumValue = ...
3
votes
1answer
82 views

jQuery Mobile, setting the slider's value

The slider currently renders fine, it just doesn't do what I tell it to. I can't use $('#slider').val(50).slider('refresh'), and when I do it tells me: Uncaught cannot call methods on slider ...
3
votes
1answer
181 views

Double slide to unlock for iPhone?

I want a control for iOS that slides left-to-right, similar to slide to unlock, but also slides right-to-left. I want something very similar to the control on Android's lock screen, where sliding ...
3
votes
2answers
306 views

Is that possible to add a label to the UISlider's thumb image?

I want to add a label to the slider's thumb which should show the value of the slider and changes too when thumbs is being dragged towards right side. Is it possible?? Anu comments or suggestion would ...
3
votes
1answer
561 views

Custom iPhone UISlider to look like the iPod app volume control

So I have a UISlider which I'm customizing with some images: UIImage *stetchLeftTrack = [[UIImage imageNamed:@"slider_blue.png"] stretchableImageWithLeftCapWidth:9.0 topCapHeight:0.0]; UIImage ...
3
votes
3answers
208 views

3 interconnected sliders

I've been racking my brains over this problem for two days, I've tried different things but none of them work. I'm building an app which is a kind of quizz. There are three subjects which contain ...
3
votes
3answers
868 views

Howto get UISlider to respond to tap events on the track above and below the thumb slider

I have a 284 pixel wide UISlider with a range of 0-25. The user needs to select a value to 1 decimal place (say 12.3), which is possible with care by rolling your finger, but is fiddly and tends to ...
3
votes
2answers
3k views

UISlider to control AVAudioPlayer

I'm trying to implement a little function in my app. I am currently playing sounds as AVAudioPlayers and that works fine. What I would like to add is to control the sound's position (currentTime) with ...
3
votes
1answer
277 views

UISlider Available Value

I would like to know how to reproduce the UISlider appearance of streaming audio/video in the native iPhone player. I have it figured out except how to reproduce the available section and the empty ...
3
votes
1answer
2k 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 ...
3
votes
2answers
2k views

bigger UISlider ok but tracking zone problem

My goal is to create a bigger UISlider with 35 pixels height for the thumb image. I subclassed UISlider and added the method : - (CGRect)trackRectForBounds:(CGRect)bounds { return ...
3
votes
3answers
4k views

Cell not updating value as UISlider value changed

I have a question that is driving me crazy. It is all about updating, in real time, an UITableViewCell with the value of an UISlider that is inside another UITableViewCell. The problem The cell is ...
3
votes
2answers
2k views

UISlider Update inside UITableViewCell

I have a custom UITableViewCell that contains a UISlider control and a UILabel which shows the current text value for the slider position. I want to update the label as the slider knob is dragged. ...
2
votes
1answer
125 views

Change the slider of an MPVolumeView

I have a class that extends UISlider (my custom slider) and i want to change the slider in MPVolumeView (MPVolumeSlider) with my custom slider. I can customize the slider in MPVolumeView but i can't ...
2
votes
2answers
108 views

Custom UISlider: avoid updating when dragging outside

I'm quite new to iPhone development and I'm building my first app :) In one of my view controllers I built a customSlider that should behave as the native "slide to unlock" slider. My doubt right ...
2
votes
1answer
253 views

iOS how to make slider stop at discrete points

I would like to make a slider stop at discrete points that represent integers on a timeline. What's the best way to do this? I don't want any values in between. It would be great if the slider ...
2
votes
2answers
359 views

Custom UITableViewCell with centered UISlider and two images

I'd like to programmatically create a custom UITableViewCell with a UISlider in the center and two images at either end. For an example see the Brightness setting on any iOS device. It has a ...
2
votes
1answer
459 views

problem with UISlider : printing values of the slider and getting to change the style

I am facing some problem with UISlider programming. 1) style: I know we have to set the minimum and maximum images. I am just not sure what images and any image reference will be great ? I only want ...
2
votes
2answers
534 views

slider control similar to ipad default calendar app

I would like to know how to implement the slider similar to the one in the Ipad default calendar application. I have attached the image below If you see at the bottom, it acts like a slider which ...
2
votes
4answers
896 views

Setting interval value for UISlider

I need to set the interval value for an UISlider. Please help..
2
votes
1answer
154 views

Is it possible to make UISlider smaller?

I'm afraid I'm missing something obvious here, but I can't find an answer anywhere nor I can seem to figure it out on my own, so I'll ask here. Is it possible to make an UISlider slightly smaller ...
2
votes
2answers
2k views

UISlider events

I'm using an UISlider, its updated automatically except the user is touching the sliderbutton. therefore i did this in the function which updates automatically by an NSTimer: if (!isSliderTouched) { ...
2
votes
2answers
590 views

UISlider and UIScrollView

I have a UISlider as part of a view that is loaded into a UIScrollView with paging enabled. I've noticed an unexpected behavior. If the user tries to use the slider quickly (i.e. press and move) it ...
2
votes
3answers
303 views

.change doesn't work, when the value changes via another script

i have a select tag <select name="valueAA" id="valueAA"> i use UI Slider, and i need to write a function onchange of select tag, but when it changes via slider, my function doesn't work. ...
2
votes
2answers
376 views

UISlider, thumb do not move

I have slider in my table's cell, here is my slider initialization code: UISlider* slider = [[UISlider alloc] init]; slider.continuous = NO; slider.maximumValue = 2; slider.minimumValue = 0.5f; ...
2
votes
3answers
404 views

Is there a way to make the jQuery UI slider start with 0 on top instead of on bottom?

Look at this demo of the jQuery UI Slider. Notice how when the handle is down the bottom, the value is 0? Is there a way to reverse this, so the handle up the very top is 0, and the handle down the ...
2
votes
3answers
1k views

iPhone:Programming UISlider to position at clicked location

How to set the slider to clicked position and get the slider value on the clicked location on UISlider in iPhone programming. i know we can drag the slider to that position but i dont want to do it. ...
2
votes
2answers
1k views

IPhone Range Slider

I know there is a UISlider but does anyone already made RangeSlider ( with two thumbs ?) or knows how to extend the uislider?
2
votes
2answers
2k views

Setting tick marks for UISlider

Is there any method for setting tick marks for UISlider. NSSlider has something called - (void)setNumberOfTickMarks:(NSInteger)numberOfTickMarks. But UISlider does not appear to have one. What i want ...
2
votes
0answers
639 views

UISlider track image that doesn't stretch

I'm trying to use a custom track image for a UISlider but it is an asymmetric image from one end of the slider to the other. I have tried setting up my image with leftCapWidth and so on but this just ...
2
votes
1answer
2k views

Onchange event using selecttouislider

I am referring to http://www.filamentgroup.com/lab/update_jquery_ui_slider_from_a_select_element_now_with_aria_support and having hard time retrieving the selected value on the slider. Initially I ...
2
votes
1answer
439 views

UISlider Multiple Touch Lag

I'm developing an game which has a component based on UISliders. The player must slide them from left to right one at a time, and on occasion two at a time. The problem lies in the double slides. When ...
2
votes
1answer
1k views

jQuery slider problem reaching min and max values

I have a jQuery slider initialized and then dynamically set min max values depeding on the contents of a json-request. Steps av even 100, min a max are recalculated to even hundred, most of the case ...

1 2 3 4 5 7