Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

What is the difference between -[UIViewController viewWillAppear:] and -[UIViewController viewDidAppear:]?

share|improve this question
25  
Difference between "will" and "did". – BoltClock Apr 12 '11 at 5:08
(If I may be slightly pedantic:) Selectors are case-sensitive, and colons matter. Therefore, -viewWillAppear:, not viewwillAppear or whatever you had. [I've edited the question to reflect that.] – Jonathan Sterling Apr 12 '11 at 5:13
thanks ...................... – PJR Apr 12 '11 at 5:15
thanks BoltClock, but please give me example of both if possible.. – PJR Apr 12 '11 at 10:19
1  
@BoltClock it would be nice if that were true. I'm guessing the 15 people who upvoted read the method name but never actually measured it ... Came here from Google because that is NOT the difference between them – Adam Oct 10 '12 at 16:55
show 1 more comment

6 Answers

up vote 83 down vote accepted

In general, this is what I do:

1) ViewDidLoad - Whenever I'm adding controls to a view that should appear together with the view, right away, I put it in the ViewDidLoad method. Basically this method is called whenever the view was loaded into memory. So for example, if my view is a form with 3 labels, I would add the labels here; the view will never exist without those forms.

2) ViewWillAppear: I use ViewWillAppear usually just to update the data on the form. So, for the example above, I would use this to actually load the data from my domain into the form. Creation of UIViews is fairly expensive, and you should avoid as much as possible doing that on the ViewWillAppear method, becuase when this gets called, it means that the iPhone is already ready to show the UIView to the user, and anything heavy you do here will impact performance in a very visible manner (like animations being delayed, etc).

3) ViewDidAppear: Finally, I use the ViewDidAppear to start off new threads to things that would take a long time to execute, like for example doing a webservice call to get extra data for the form above.The good thing is that because the view already exists and is being displayed to the user, you can show a nice "Waiting" message to the user while you get the data.

share|improve this answer
Sorry, but what do you mean by "load the data from my domain into the form" in viewWillAppear? You mean downloading through network? But you also suggest download stuff in viewDidAppear? – Philip007 Dec 3 '12 at 9:28
@Philip007 I think Stack is referring to this type of domain: en.wikipedia.org/wiki/Domain-specific_modeling. The data is loaded from your models or similar. – dentarg Dec 20 '12 at 14:45

The viewWillAppear method is called before loading the actual view.

The viewDidAppear method is called when the view is already loaded, and you want to show something.

share|improve this answer

viewwillappear will call before loading the view so that you can do certain task before loading that view and viewdidappear will call after loading the view so the post task will done in that method

share|improve this answer

The former happens before the view appears and the latter happens afterwards.

share|improve this answer

As the name suggests the viewWillAppear is called before the view is about to appear and viewDidAppear is called when view did appear.

share|improve this answer

Difference between "will" and "did"...As the name suggests the viewWillAppear is called before the view is about to appear and viewDidAppear is called when view did appear.

share|improve this answer
look at the accepted answer bro, which contains 70+ upvotes. :) – PJR Apr 15 at 11:53
I know, I am newbie here.. Building repo.. – Mahesh Apr 16 at 4:16
okay..Great and yes WELCOME :) – PJR Apr 16 at 4:43
I don't think I thanked you. So I don't know why you said "yes WELCOME"... – Mahesh Apr 16 at 4:50

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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