I have Three different views on iphone. I switch between different views successfully, but I want to access the 1st view's variable in second view's ViewDidLoad method but I can't get it so plz help me on that.
|
feedback
|
|
You need a reference to the first view on the second one. So, when you instantiate the second one, implement a message that would receive the first view and store a reference to it. Let me point that it's better to use ViewController pattern to orchestrate data and behavior flowing from one view to another. | |||||||||
feedback
|
|
Having two subclasses of UIView declared like so:
You could do the following the reference the "someVar" variable from the first view
| |||
|
feedback
|
|
I want to add something to the code posted above. Imagine that you want to use, the variable from ViewOne an assign it to a second variable in ViewTwo.
So you have to put in ViewOne .m
In the SecondView .m
| |||
|
feedback
|