views:

5

answers:

0

hi , i need from another nib file to call the method (applicationDidFinishLauching) from appdelegate. I am a bit new into the calling methods system can you help me?

i have done this code since :

                          DrunkeNewIdeaAppDelegate *appDelegate = (DrunkeNewIdeaAppDelegate *)[[UIApplication sharedApplication] delegate];

                          [appDelegate applicationDidFinishLaunching:...??];

this is my applicationdidlauch... method :

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { 

i need to call this but with the parameters and other stuff i can't.

thx