I have three UITextFields. Two of them represent a certain number value. The third represents the percentage of the two. How do I setup the 3rd UITextField to do this simple math?
I have three UITextFields. Two of them represent a certain number value. The third
Share
You can simply get the intValue or the floatValue or the doubleValue of the text that you have received from the first two text fields. Eg:
Hope this helps.