RootView
has a label, and a method which updates this label. There is also a number of views located inside container views. Any of these should be able to update this label. They do so by calling this method. I am able to call it from these subview-controllers, but it does not update the label. Calling it from the root view does update the label. I've read about delegates, but I haven't been successful in adding it. Is that the way I should do it, by delegates?
this is from the subView. Please correct me If i am wrong, but I suppose it doesn't work because it creates a new rootView, and not using the old one.
Storyboard image here: http://i58.tinypic.com/2e17j1e.jpg
[super viewDidLoad];
self.rootView = [[RootViewController alloc]init];
[self.rootView displaymessage:@"Hello sent from child"];