I have 4 views. 3 views are used to input data in several UITextFields and then are saved using NSUserDefault… Is there a way to make a UITextField on the 4th view collect data from the other 3 views. I want the UITextField on view 4 to show the total of the other UITextFields.
Share
to get a “sum” of all other textfields at a given time. If you want this to happen as the user types the text into the textfields, you need to implement a selector for “editing changed” IBAction, and link it to your textfields, then, inside that function, update the big textfield.