Sorry if it is not a standard question, but now your solutions can help me out. In my app, I have two classes: ClassA
and ClassB
. ClassB
You pass the value to your class or object constructor. You then save the value to a property in that class. You then access that property from the view did load, or your other events.
This is more a general programming concept, than anything related to objective c, the iPad, etc.
So, in your header file, you define a property. Then you synthesize that property the c file. Then you set the property in the constructor. Then you access the property in your view did load event.