Hi all,
I am trying to call the method "foo" which is in the class called "fooClass". In another class i have my appDelegate and I want to execute the method foo in applicationdidfinishlaunching. I have imported the class "fooClass" into the appDelegate header file and I did initiate it in applicationdidfinishlaunching with this:
"fooClass *blah = [[fooClass alloc]init];"
Then running the method by doing this:
"[blah foo];"
However when I debug and launch the program the stuff in foo method is not being executed. Can anyone help me out on this issue?