German
German

Reputation: 137

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?

enter image description here

Upvotes: 0

Views: 341

Answers (1)

iwasrobbed
iwasrobbed

Reputation: 46703

UIStepper has a .value property that you can use:

double sumTotal = stepper.value * [[textField text] doubleValue];

Upvotes: 1

Related Questions