2017-06-21 18 views

答えて

1

アップルが何ができるか、ラインを見つけたい場合は

enter image description here

をこれをアプリケーションの「異常終了」と呼びます。 documentationアップルから:

Abnormal Exit [EXC_CRASH // SIGABRT] - The process exited abnormally. The most common causes of crashes with this exception type are uncaught Objective-C/C++ exceptions and calls to abort().

App Extensions will be terminated with this exception type if they take too much time to initialize (a watchdog termination). If an extension is killed due to a hang at launch, the Exception Subtype of the generated crash report will be LAUNCH_HANG. Because extensions do not have a main function, any time spent initializing occurs within static constructors and +load methods present in your extension and dependent libraries. You should defer as much of this work as possible.

私は、これが原因で、それはボンネットの下に仕事だ行うにFoundationまたはUIKit無効なパラメータを渡すので引き起こされることを発見しました。私があなたの場合は、アプリケーションがこのクラッシュを起こしている原因を絞り込んで、breakpointsに設定することで、これを引き起こしている可能性のあるものを調べます。

関連する問題