So I am fairly new to objective C and iOS programming. I am learning as I program and have a question. I am trying to modify a UITextField in my FirstViewController with my Second. How do I do this?

I have a UITextField name in FirstViewController and would like to be able to do something like firstViewController.name.text = @"new name"; inside of SecondViewController with a button and have the value changed so that if I switch tabs back to the FirstViewController I see the change has been made.

Thanks in advance for any help.

link|improve this question
How are you switching between your view controllers? Are they in a tabbarcontroller, a navigationcontroller, etc? – Nick Lockwood Feb 6 at 1:30
Didn't see this comment. It was tabbedcontroller. – Edric Eddy Chen Mar 6 at 1:51
feedback

2 Answers

up vote 0 down vote accepted

1、Set the FirstViewController as the delegate of SecondViewController; 2、Use NSNotificationCenter to notify the change event.

link|improve this answer
I was just suggesting NSNotification center... beat me to it... – wallacer Feb 6 at 1:55
Thanks worked like a charm. – Edric Eddy Chen Feb 7 at 7:36
feedback

Well to call

firstViewController.name.text = @"new name"

You just need a reference to your first view controller inside of your second view controller. There are a number of ways to pass a reference around. Could go through the app delegate.

Another option that doesn't require you to have a reference to the first view controller inside the second view controller is to use NSNotificationCenter

Then you can have your second view controller observe a notification named say @"namechange" which contains the new name string.

When the button is pressed, you post a notification to the NSNotificationCenter with the new name attached. All the info is in the link above, or just google NSNotificationCenter for more tutorials and info.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.