How to multiply UIStepper value (product quantity) to textfield value (product price) and get total sum in uilabel.text?
Asked
Active
Viewed 337 times
1 Answers
1
UIStepper
has a .value
property that you can use:
double sumTotal = stepper.value * [[textField text] doubleValue];

iwasrobbed
- 46,496
- 21
- 150
- 195