How do I know when my GUI is ready, so I can initialize my GUI components?
I want to retrieve HTML from a server (don’t know how, so you may see a post from me concerning that) and put that in a text field (maybe UIWebView), but how do I know when the UI is ready?
I don’t want a big button with the text “RETRIEVE DATA” or something like that.
Thanks
How do I know when my GUI is ready, so I can initialize my
Share
- (void) awakeFromNibis what you are looking for.Of course you want to do somethings in
viewdidloadas well.From the Apple docs:
if you don’t use a xib file definitely you want to use
viewdidload: