-1

リリースモードでアプリケーションをデバッグする方法を教えてください。最初の行でもクラッシュします。以下はコードスニペットです。

- (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];


}
4

1 に答える 1

0

何が問題なのかわかりませんが
、最適化レベルを 0 に設定すると問題なく動作していました。

ここに画像の説明を入力

于 2012-05-31T06:28:55.200 に答える