2011-11-08 4 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

흠, 나는 텍스트 필드가 충돌의 원인이라고 생각하지 않습니다. 이미지의 크기는 얼마입니까? – beryllium

+0

2 개의 이미지는 {700,385} 크기이고 세 번째 이미지는 {768 × 2933}입니다. 이 이미지를 데이터로 변환하고 전자 메일에 첨부합니다. – Dee