Reputation: 137
How to multiply UIStepper value (product quantity) to textfield value (product price) and get total sum in uilabel.text?
Upvotes: 0
Views: 341
Reputation: 46703
UIStepper
has a .value
property that you can use:
double sumTotal = stepper.value * [[textField text] doubleValue];
Upvotes: 1