vote up 4 vote down star
4

I've read numerous posts about people having problems with viewWillAppear when you do not create your view heirarchy JUST right. My problem is I can't figure out what that means.

If I create a RootViewController and call addSubView on that controller, I would expect the added view(s) to be wired up for viewWillAppear events.

Does anyone have an example of a complex programmatic view heirarchy that successfully recieves viewWillAppear events at every level?

Apple Docs state:

Warning: If the view belonging to a view controller is added to a view hierarchy directly, the view controller will not receive this message. If you insert or add a view to the view hierarchy, and it has a view controller, you should send the associated view controller this message directly. Failing to send the view controller this message will prevent any associated animation from being displayed.

The problem is that they don't describe how to do this. What the hell does "directly" mean. How do you "indirectly" add a view.

I am fairly new to Cocoa and iPhone so it would be nice if there were useful examples from Apple besides the basic Hello World crap.

Any help is greatly appreciated...

flag

7 Answers

vote up 4 vote down

If you use a navigation controller and set its delegate, then the view{Will,Did}{Appear,Disappear} methods are not invoked.

You need to use the navigation controller delegate methods instead:

navigationController:willShowViewController:animated:
navigationController:didShowViewController:animated:
link|flag
vote up 2 vote down

I've been using a navigation controller. When I want to either descend to another level of data or show my custom view I use the following:

[self.navigationController pushViewController:<view> animated:<BOOL>];

When I do this, I do get the viewWillAppear function to fire. I suppose this qualifies as "indirect" because I'm not calling the actual addSubView method myself. I don't know if this is 100% applicable to your application since I can't tell if you're using a navigation controller, but maybe it will provide a clue.

link|flag
vote up 1 vote down

I've run into this same problem. Just send a viewWillAppear message to your view controller before you add it as a subview. (There is one BOOL parameter which tells the view controller if it's being animated to appear or not.)

[myViewController viewWillAppear:NO];

Look at RootViewController.m in the Metronome example.

(I actually found Apple's example projects great. There's a LOT more than HelloWorld ;)

link|flag
1  
Actually, you should call viewWillAppear after you add it to the subview. Otherwise, IBOutlets/IBActions won't be wired up. – 4thSpace Jun 17 at 15:37
vote up 1 vote down

I'm not 100% sure on this, but I think that adding a view to the view hierarchy directly means calling -addSubview: on the view controller's view (e.g., [viewController.view addSubview:anotherViewController.view]) instead of pushing a new view controller onto the navigation controller's stack.

link|flag
vote up 1 vote down

I think that adding a subview doesn't necessarily mean that the view will appear, so there is not an automatic call to the class's method that it will

link|flag
vote up 0 vote down

Just call the subView viewWillAppear from your view viewWillAppear.

link|flag
vote up -2 vote down

Hi All,

Has any one got the answer to above problem. Here I go with similar kind of problem, plz help :o(

I would like to describe the calling of viewControllers in my code: I have a rootViewController (added in mainWindow.xib) the viewWillAppear method of this class is called perfectly. I will give you the caling hiearchy of methods : applicationDidFinishLaunching-->[rootViewController viewdidload]-->in viewDidLoad of rootView i have loaded another viewController that has tabbar on it having 4 classes(A,B,C & D). So by default 1st class (i.e A ) viewDidLoad is called. Class A has a tableView control and added as navigation control so that clicking on any rows navigates to another classes viewControllers (A-->X-->Y..). The problem here is only rootviews viewWillAppear method is called rest of the classes (A or X or Y..) viewWillApperar method is not called. I hope you are not confused ). Please help i am stuck from many days in this problem .

link|flag

Your Answer

Get an OpenID
or

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