Ios com.apple.root.default-overmit-priority中出现不清楚的崩溃

Ios com.apple.root.default-overmit-priority中出现不清楚的崩溃,ios,exc-bad-access,crash-reports,Ios,Exc Bad Access,Crash Reports,只是变得非常不清楚(至少对我来说)记忆崩溃 Crashed: com.apple.root.default-overcommit-priority EXC_BAD_ACCESS KERN_INVALID_ADDRESS at 0x4086ec0000000000 Thread : Crashed: com.apple.root.default-overcommit-priority 0 libsystem_platform.dylib 0x000000019587d550 OSA

只是变得非常不清楚(至少对我来说)记忆崩溃

Crashed: com.apple.root.default-overcommit-priority
EXC_BAD_ACCESS KERN_INVALID_ADDRESS at 0x4086ec0000000000

Thread : Crashed: com.apple.root.default-overcommit-priority
0  libsystem_platform.dylib       0x000000019587d550 OSAtomicDequeue + 16
1  libsystem_malloc.dylib         0x000000019583bfb4 nano_pressure_relief + 400
2  libsystem_malloc.dylib         0x000000019583a27c malloc_zone_pressure_relief + 208
3  libdispatch.dylib              0x00000001956ec3e0 _dispatch_client_callout + 16
其他线程似乎没有做任何有趣的事情,大多数线程都没有做任何事情,但是UI可能处理了一些事情,但是在学习stacktrace之后,我不知道发生了什么

Thread : com.apple.main-thread
0  CoreFoundation                 0x0000000188c93330 __CFStringHash + 288
1  CoreFoundation                 0x0000000188bbecb4 CFBasicHashFindBucket + 1092
2  CoreFoundation                 0x0000000188bbe830 CFDictionaryGetValue + 144
3  UIKit                          0x000000018bb9d904 -[UIApplication _isSpringBoard] + 48
4  UIKit                          0x000000018bb9d7b8 -[UIDevice setOrientation:animated:] + 80
5  UIKit                          0x000000018bb9cb18 -[UIApplication handleEvent:withNewEvent:] + 752
6  UIKit                          0x000000018bb9c720 -[UIApplication sendEvent:] + 104
7  UIKit                          0x000000018bc0a0b0 _UIApplicationHandleEvent + 712
8  GraphicsServices               0x000000018e5a9128 _PurpleEventCallback + 676
9  GraphicsServices               0x000000018e5a8c54 PurpleEventCallback + 48
10 CoreFoundation                 0x0000000188c86fc8 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE1_PERFORM_FUNCTION__ + 56
11 CoreFoundation                 0x0000000188c86f28 __CFRunLoopDoSource1 + 444
12 CoreFoundation                 0x0000000188c8514c __CFRunLoopRun + 1620
13 CoreFoundation                 0x0000000188bc5b38 CFRunLoopRunSpecific + 452
14 GraphicsServices               0x000000018e5a7830 GSEventRunModal + 168
15 UIKit                          0x000000018bc040e8 UIApplicationMain + 1156
16 SalesBoard4                    0x0000000100168644 main (main.m:16)
17 libdyld.dylib                  0x0000000195707aa0 start + 4
设备iPad Air,iOS 7.0.4版

请,如果你知道这是什么,或者至少知道如何处理,分享你的知识

谢谢

“内存过度使用是虚拟化中的一个概念,它涵盖了为虚拟计算设备分配的内存比它们所在的物理机器实际拥有的内存更多。”

资料来源:维基百科


因此,您可以将其视为内存问题。检查您是否在某处使用了大量内存。

谢谢!这是我想到的第一件事,但是这个应用程序的内存永远不会超过150MB。这是iPadAir。这是否意味着,如果用户在后台有一堆应用程序,而我的应用程序要求其150MB的一小部分,那么它将被杀死,因为其他应用程序可能在两天前被移动到前台,并且仍然存在?这可能是一个原因。有人在加载大图像时遇到此错误。虽然我从来没有遇到过这个错误。但是为什么iOS会这样终止应用程序,只是指向某个地方(某个无效地址)?