Вопрос

Any pointers how can we debug an application in the release mode, its crashing even a first line it self , below is the code snippet

- (void)applicationDidFinishLaunching:(NSNotification *)aNotification {
    // Insert code here to initialize your application

    debugLog<<" inside app did finish launching "<<endl;

    **// here its crashing**        
    [self InitAppController];

    [AppUtil createAppMacFolder];


}
Это было полезно?

Решение

not sure what was the problem,
But when i set the optimization level to 0 was working fine,

enter image description here

Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top