Questions tagged [uistepper]

A UIStepper control provides a user interface for incrementing or decrementing a value.

A UIStepper displays two buttons, one with a minus ("–") symbol and one with a plus ("+") symbol. The bounding rectangle for a stepper matches that of a UISwitch object.

If you set stepper behavior to autorepeat (which is the default), pressing and holding one of its buttons increments or decrements the stepper’s value repeatedly. The rate of change depends on how long the user continues pressing the control.

Apple Documentation

224 questions
0
votes
1 answer

Connect UIstepper and UIlabel

How do I connect an UIstepper with an UIlabel so that the value from "+" or "-" in UIstepper increases/decreases the value/number in UIlabel? The app has only one viewvontroller and should allow users to simply count up (or down) days.
herbigt
  • 55
  • 1
  • 1
  • 6
0
votes
3 answers

Unrecognized selector sent to instance (UIStepper)

Okay, I know there is a ton of these questions out there, because I've looked and tried some of the solutions. However, many of the ones I tried didn't work or the answer was too over my head for me to really grasp well - I'm a new developer and…
ecfedele
  • 306
  • 3
  • 15
0
votes
1 answer

How to place UIStepper vertically?

I am developing a products storage app and need to implement a UIStepper in it. The problem is that I just can't place it vertically as I would like to have it. So does anyone know a way I can do this??
Marco Almeida
  • 1,285
  • 3
  • 17
  • 39
0
votes
1 answer

custom class story board uisegmentcontrol uistepper

i've created a subclass of an UisegmentControl and added to my project. #import @interface MMcustomsegment : UISegmentedControl @end on the storyboard i've chose the right custom class on the identity inspector. But when i run it…
0
votes
4 answers

Accessing the image gallery through code for displaying in image view

I've just started a new project where I want the user to be able to pick one of the images in the devices gallery. I am trying to achieve this by using an ImageView and a UIStepper. I want to write all images inside the gallery into an array and…
Exothug
  • 339
  • 4
  • 18
0
votes
1 answer

Add a UIStepper to a settings bundle

I need to add a stepper to my settings bundle. Is there a way I can do it? I'm thinking I would create a table with a single cell and add the stepper to that. How do I do that in a settings bundle?
Milo
  • 5,041
  • 7
  • 33
  • 59
0
votes
2 answers

UIStepper won't display

I'm basically having the same issue as this question. But guess what? That question doesn't have any good answer. - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{ if([indexPath row] ==…
Andrew
  • 1,571
  • 17
  • 31
0
votes
4 answers

how to increment or decrement textfield value using uistepper?

I currently have a UITextField which has some value in it and also i have a UIStepper besides it. I want to know how to use the UIStepper so as increment/decrement the textfield value. CODE: the value changed action of the UIStepper 1st I tried…
vin
  • 1,258
  • 5
  • 20
  • 33
0
votes
1 answer

iOS controlling a slider value and text label value with a stepper

I already have a slider that controls the output of a text label. -(IBAction)mySlider:(UISlider *)sender { _myTextLabel.text = [NSString stringWithFormat:@"%i", (int) sender.value]; } However, I also want a stepper to be able to changer the…
jake9115
  • 3,964
  • 12
  • 49
  • 78
0
votes
0 answers

My UIStepper is not animated

I'm using a UIStepper which I added through the storyboard. I had a IBOulet reference to my UITableViewCell subclass and a IBAction when the stepper's value changed. My problem is that when I touch my UIStepper, there is no animation. I'm quite new…
Benjamin Ellis
  • 171
  • 1
  • 7
0
votes
1 answer

How to multiply UIStepper value to Textfield value ios?

How to multiply UIStepper value (product quantity) to textfield value (product price) and get total sum in uilabel.text?
German
  • 137
  • 17
0
votes
1 answer

can't read the value of a UIStepper

I'm trying do program my own interval training timer. Now I have a problem with reading out the value of a UIStepper Control. I set an int over the UIStepper controller, which works so far. - (IBAction)stepperChange:(id)sender { // converting…
DaniS.
  • 181
  • 2
  • 10
0
votes
1 answer

unrecognized selector sent to instance for Paul Hegarty's CS193P

I'm following Paul Hegarty's CS193P course video (lecture #4 @ 1:05:40 mark) and ran into problems. Please help debug this 'unrecognized selector sent to instance' error. The view has three objects - see image…
TaniOS
  • 3
  • 2
0
votes
1 answer

Update UISteppers value from textfield

here is the case. I would like to type a value in a text field and pass it to the current uisteppers value. if for example current value is 2 and i enter 35 in the textfield then when i press the + button on the stepper the value should go to 36 (or…
alexandros
  • 1
  • 1
  • 2
0
votes
1 answer

All UISteppers that I add to my app appear zoomed at 2x

Recently upgraded to XCode 4.5 I have a screen that's had 2 UIStepper controls on it for quite some time and all of a sudden they're appearing at twice the size that they should. Upon further testing, the same problem occurs when I add a UIStepper…
bgolson
  • 3,460
  • 5
  • 24
  • 41