Hi, i am using Following code in appdelegate.m file..but it did not work..?
OthersController *mm_OthersController = [[OthersController alloc] init];
[mm_OthersController tScreen];
[mm_OthersController release];
when i put break point, it goes to the function tScreen correctly....but i can get output..?if i call the method "tScreen" from view willappear of OthersController, it works fine.... the method in OthersController.m file
-(void)tScreen
{
[self.navigationController setToolbarHidden: NO animated: NO];
self.navigationController.toolbar.barStyle = UIBarStyleBlack;
}
any help pls......?