I know there is an NSSomething() that is called automatically if it exists when the app starts and can be used to set for example the text of a label.
I just can remember the name of that function.
help?
Thanks!
I know there is an NSSomething() that is called automatically if it exists when the app starts and can be used to set for example the text of a label.
I just can remember the name of that function.
help?
Thanks!
applicationDidFinishLaunching
or application:didFinishLaunchingWithOptions:
is probably what you're looking for.
The answer is awakeFromNib, example:
- (void)awakeFromNib
{
DoSomething();
}