Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have an NSString in one class, a UILabel in another class and the 3rd UILabel in my 3rd class. They are all on 3 different views in IB. I want my 1st class to save some string to NSString and I want my 2nd view UILabel to equal this NSString and my 3rd class' UILabel to equal my 2nd class' UILabel. How do I do that?

Thanks in advance!

share|improve this question
what is your class hierarchy? is it using navigation controller? also do you want some constant type string? – rishi Jun 1 '12 at 18:03
they are all modal views, except the first which is a navigation controller – SergiusGee Jun 1 '12 at 18:09

1 Answer

up vote 1 down vote accepted

This is a common question with a common pattern for a solution.

Create a model class to hold your string. Instantiate an object of this class in your application delegate (perhaps in applicationDidFinishLaunching:), and pass it along to all three of your view controllers. Use Key-Value Observing on your model class by your sub-view controllers, so they get alerted to any changes in the model (i.e. changes to the string).

share|improve this answer
So model class is a separate class, right? – SergiusGee Jun 1 '12 at 18:10
@SergiusGee yes – Shaggy Frog Jun 1 '12 at 18:17

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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