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