2011-11-08 2 views
0

このエラーは何を意味しますか?アプリケーションクラッシュ - 有線クラッシュ

Nov 8 17:57:10 unknown configd[25] <Notice>: jetsam: kernel memory event (91), free: 670, active: 2840, inactive: 2253, purgeable: 0, wired: 15143 
Nov 8 17:57:11 unknown SpringBoard[92] <Warning>: Received memory warning. Level=2 
Nov 8 17:57:11 unknown MobileMail[6432] <Warning>: Received memory warning. Level=2 
Nov 8 17:57:11 unknown configd[25] <Notice>: jetsam: kernel termination snapshot being created 
Nov 8 17:57:11 unknown com.apple.launchd[1] <Notice>: (UIKitApplication:com.apple.mobileipod[0xe0a1]) Exited: Killed: 9 
Nov 8 17:57:11 unknown com.apple.launchd[1] <Notice>: (UIKitApplication:com.apple.mobilemail[0xbebe]) Exited: Killed: 9 
Nov 8 17:57:11 unknown com.apple.launchd[1] <Notice>: (UIKitApplication:paradigm.PaymentSystemiPad[0x6c80]) Bug: launchd_core_logic.c:3795 (24506):0 
Nov 8 17:57:11 unknown DTMobileIS[6377] <Warning>: _memoryNotification : <NSThread: 0x1c5361d0>{name = (null), num = 1} 
Nov 8 17:57:11 unknown com.apple.debugserver-50[6480] <Warning>: 1 [1950/1503]: error: ::read (4, 0x2ff669f0, 1024) => -1 err = Bad file descriptor (0x00000009) 
Nov 8 17:57:11 unknown com.apple.launchd[1] <Notice>: (UIKitApplication:paradigm.PaymentSystemiPad[0x6c80]) Bug: launchd_core_logic.c:3794 (24506):3 
Nov 8 17:57:11 unknown com.apple.launchd[1] <Notice>: (UIKitApplication:paradigm.PaymentSystemiPad[0x6c80]) Bug: launchd_core_logic.c:3202 (24506):10 
Nov 8 17:57:11 unknown com.apple.launchd[1] <Notice>: (UIKitApplication:paradigm.PaymentSystemiPad[0x6c80]) Working around 5020256. Assuming the job crashed. 
Nov 8 17:57:11 unknown com.apple.launchd[1] <Warning>: (UIKitApplication:paradigm.PaymentSystemiPad[0x6c80]) Job appears to have crashed: Segmentation fault: 11 
Nov 8 17:57:11 unknown SpringBoard[92] <Warning>: Application 'Mail' exited abnormally with signal 9: Killed: 9 
Nov 8 17:57:12 unknown DTMobileIS[6377] <Warning>: _memoryNotification : { 
     OSMemoryNotificationLevel = 0; 
     timestamp = "2011-11-08 12:27:11 +0000"; 
    } 
Nov 8 17:57:12 unknown DTMobileIS[6377] <Warning>: _memoryNotification : <NSThread: 0x1c5361d0>{name = (null), num = 1} 
Nov 8 17:57:12 unknown DTMobileIS[6377] <Warning>: _memoryNotification : { 
     OSMemoryNotificationLevel = 0; 
     timestamp = "2011-11-08 12:27:12 +0000"; 
    } 
Nov 8 17:57:12 unknown SpringBoard[92] <Warning>: Application 'PaymentSystemiPad' exited abnormally with signal 11: Segmentation fault: 11 
Nov 8 17:57:12 unknown SpringBoard[92] <Warning>: Application 'iPod' exited abnormally with signal 9: Killed: 9 
Nov 8 17:57:12 unknown kernel[0] <Debug>: launchd[6486] Builtin profile: MobileMail (sandbox) 
Nov 8 17:57:13 unknown ReportCrash[6485] <Error>: libMobileGestalt loadBasebandMobileEquipmentInfo: CommCenter error: 1:45 
Nov 8 17:57:13 unknown ReportCrash[6485] <Error>: libMobileGestalt copyInternationalMobileEquipmentIdentity: Could not get mobile equipment info dictionary 
Nov 8 17:57:13 unknown ReportCrash[6485] <Error>: Saved crashreport to /Library/Logs/CrashReporter/LowMemory-2011-11-08-175713.plist using uid: 0 gid: 0, synthetic_euid: 0 egid: 0 
Nov 8 17:59:12 unknown SpringBoard[92] <Notice>: MultitouchHID(1f55bf50) uilock state: 0 -> 1 
+0

クラッシュログをポストすると、コンソールログにア​​プリケーションがクラッシュした理由に関する情報が表示されません。 – 0x8badf00d

+0

メモリのためにクラッシュしました。問題 – iOSPawan

+0

デバイスログが取得されませんでした。 – Dee

答えて

1

これは、多くのメモリを割り当てたことを意味し、受信メモリの警告です。私はあなたがメモリリークを持っていると仮定したり、多くのイメージ/リソースをメモリに読み込んでいます。コードを調べて、リソースをロードする場所を探してみてください。

+0

私のアプリケーションには、約50のテキストフィールドと3つのイメージがあります。私はレベル1とレベル2のメモリ警告を取得しています。私が警告を受け取るたびに、私はdidReceiveMemoryWarningのオブジェクトを解放し、viewDidLoadでそれらを再作成します。それでも私のアプリケーションはクラッシュしています。 – Dee

+0

hm、私はテキストフィールドがクラッシュの原因だとは思わない。画像のサイズは? – beryllium

+0

2つの画像は{700,385}サイズであり、第3の画像は{768×2933}である。私はこれらの画像をデータに変換し、電子メールに添付しています。 – Dee

関連する問題