If i try to use this simple code:
- (void)applicationDidFinishLaunching:(UIApplication *)application {
// Add the tab bar controller's current view as a subview of the window
[window addSubview:tabBarController.view];
NSString *stringMer = [NSString stringWithFormat:@"OK COOL"] ;
NSString *stringMer2 = [NSString stringWithFormat:@"OK COOL"];
NSArray *truc = [NSArray arrayWithObjects:stringMer,stringMer2];
}
My application crashes ("unable to read unknown load command 0x22" or just a regular crash)... What the applicationDidFinishLaunching is from my FooAppDelegate and i have no more code, is this normal ?