I get used to put either of viewWillAppear and viewDidLoad, it's OK until know. However I'm thinking there should be some rules that guide when to put into viewWillAppear and when to put into viewDidLoad?
|
|
||||
|
|
Simple rule I use is this. Also viewWillAppear can be called multiple times
For these reason, There are more I am sure but these are simple to remember and I hope it helps. |
||||
|
|
|
viewDidLoad: Alerts you that a view has finished loading viewWillAppear: Runs just before the view loads
However, when you are loading things from a server, you also have to think about latency. If you pack all of your network communication into viewDidLoad or viewWillAppear, they will be executed before the user gets to see the view - possibly resulting a short freeze of your app. It may be good idea to first show the user an unpopulated view with an activity indicator of some sort. When you are done with your networking, which may take a second or two (or may even fail - who knows?), you can populate the view with your data. Good examples on how this could be done can be seen in various twitter clients. For example, when you view the author detail page in Twitterrific, the view only says "Loading..." until the network queries have completed. |
|||
|
|