On Sep 21, 2010, at 11:57, Steve Wetzel wrote:

> How do I access and object on one view from another view?  I cannot figure it 
> out.
> 
> I have two view controllers and two views.  Lets call them viewController1 
> and viewController2 and view1 and view2.  ViewController1 loads the second 
> view by:
> 
> [self.view addSubview:viewController2.view];
> 
> There is a label in view1 that I want to get the value of the text from in 
> the code for viewController2.  How do I do this?

Probably no one can advise you on the *best* way to do this without knowing 
exactly what you're trying to achieve. (Are there NIB files involved? How is 
the label initialized in view1? Does the label change during execution in such 
a way that view2 must be dynamically updated to match view1? Which views and 
controllers are aware of -- have references to -- the other views and 
controllers?)

The answer probably involves making the text value of the label a property of 
viewController1, and propagating it to the other places via bindings, KVO or 
setting via outlets.


_______________________________________________

Cocoa-dev mailing list (Cocoa-dev@lists.apple.com)

Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com

Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/cocoa-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com

Reply via email to