XCode调试技巧之EXC_BAD_ACCESS中BUG解决

本文介绍了如何使用Xcode的Zombie Objects和Malloc Stack调试EXC_BAD_ACCESS错误。通过编辑Scheme启用这些选项,重新运行程序,根据控制台输出的log定位问题。当发现内存泄漏或僵尸对象时,可以使用malloc_history命令查找对象分配历史。问题通常出现在-[MyMobileViewController viewDidLoad]、-[MyMobileViewController initTheView]和-[MyMobileViewController initTheFourthView]方法中,通过断点调试可以找到并修复问题。调试完成后记得关闭Zombie模式和Malloc Stack以避免内存风险。

1、通过编辑Edit Scheme,选择Diagnostics,勾选Enable Zombie Objects & Malloc Stack(注意、调试完毕后必须取消勾选,因为Zombile模式不会释放内存,很危险)



2、重新run你的程序,reproduce crash流程,控制台会输出如下log:



3、由于最新的Xcode不支持GDB模式在控制台输入指令,所以我们这里打开Max OS上的终端程序,输入指令:

malloc_history 3774 0x7d121870

注意:这里的3774对应控制台log的MobileFlagship后面的第一组数字,这个是你crash的pid号,别搞错了

  后面的地址就不用说了,自己copy


4、输入完指令后,终端会输出相关的历史信息:

Last login: Sat May  2 10:26:34 on ttys003

wurongbiaos-Mac-mini:~ wurongbiao$ malloc_history 3774 0x7d121870

malloc_history Report Version:  2.0

Process:         MobileFlagship [3774]

Path:            /Users/wurongbiao/Library/Developer/CoreSimulator/Devices/1A5BC93D-EDC2-44E4-8D0D-21253866FDEC/data/Containers/Bundle/Application/E0532AFD-4997-4DBE-881C-D297E1942FE6/MobileFlagship.app/MobileFlagship

Load Address:    0x58000

Identifier:      MobileFlagship

Version:         ???

Code Type:       X86

Parent Process:  debugserver [3775]


Date/Time:       2015-05-02 11:26:43.628 +0800

OS Version:      Mac OS X 10.10.2 (14C1510)

Report Version:  7

Analysis Tool:   /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/usr/bin/malloc_history

Analysis Tool Version:  iOS Simulator 8.1 (12B411)

----


Invalid connection: com.apple.coresymbolicationd

ALLOC 0x7d121870-0x7d1218ef [size=128]: thread_4fd11d4 |start | main | UIApplicationMain | GSEventRun | GSEventRunModal | CFRunLoopRunInMode | CFRunLoopRunSpecific | __CFRunLoopRun | __CFRunLoopDoSources0 | __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ | _UIApplicationHandleEventQueue | +[CATransaction flush] | CA::Transaction::commit() | CA::Context::commit_transaction(CA::Transaction*) | CA::Layer::layout_and_display_if_needed(CA::Transaction*) | CA::Layer::layout_if_needed(CA::Transaction*) | -[CALayer layoutSublayers] | -[NSObject performSelector:withObject:] | -[UIView(CALayerDelegate) layoutSublayersOfLayer:] | -[UILayoutContainerView layoutSubviews] | -[UINavigationController __viewWillLayoutSubviews] | -[UINavigationController _startDeferredTransitionIfNeeded:] | -[UINavigationController _startCustomTransition:] | -[UIViewController view] | -[UIViewController loadViewIfRequired] | -[MyMobileViewController viewDidLoad] | -[MyMobileViewController initTheView] | -[MyMobileViewController initTheFourthView] | -[NSBundle(UINSBundleAdditions) loadNibNamed:owner:options:] | -[UINib instantiateWithOwner:options:] | -[UINibDecoder decodeObjectForKey:] | UINibDecoderDecodeObjectForValue | UINibDecoderDecodeObjectForValue | -[UIRuntimeEventConnection initWithCoder:] | -[UIRuntimeConnection initWithCoder:] | -[UINibDecoder decodeObjectForKey:] | UINibDecoderDecodeObjectForValue | -[UIClassSwapper initWithCoder:] | -[UIView initWithCoder:] | -[UINibDecoder decodeObjectForKey:] | UINibDecoderDecodeObjectForValue | UINibDecoderDecodeObjectForValue | -[UIImageView initWithCoder:] | -[UINibDecoder decodeObjectForKey:] | UINibDecoderDecodeObjectForValue | -[UIImageNibPlaceholder initWithCoder:] | _UIImageAtPath | _UICacheNameForImageAtPath | +[NSString stringWithFormat:] | -[NSPlaceholderString initWithFormat:locale:arguments:] | _CFStringCreateWithFormatAndArgumentsAux2 | __CFStringAppendFormatCore | CFStringAppend | __CFStringChangeSizeMultiple | CFAllocatorAllocate | __CFAllocatorSystemAllocate | malloc_zone_malloc 

----

FREE  0x7d121870-0x7d1218ef [size=128]: thread_4fd11d4 |start | main | UIApplicationMain | GSEventRun | GSEventRunModal | CFRunLoopRunInMode | CFRunLoopRunSpecific | __CFRunLoopRun | __CFRunLoopDoSources0 | __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ | _UIApplicationHandleEventQueue | +[CATransaction flush] | CA::Transaction::commit() | CA::Context::commit_transaction(CA::Transaction*) | CA::Layer::layout_and_display_if_needed(CA::Transaction*) | CA::Layer::layout_if_needed(CA::Transaction*) | -[CALayer layoutSublayers] | -[NSObject performSelector:withObject:] | -[UIView(CALayerDelegate) layoutSublayersOfLayer:] | -[UILayoutContainerView layoutSubviews] | -[UINavigationController __viewWillLayoutSubviews] | -[UINavigationController _startDeferredTransitionIfNeeded:] | -[UINavigationController _startCustomTransition:] | -[UIViewController view] | -[UIViewController loadViewIfRequired] | -[MyMobileViewController viewDidLoad] | -[MyMobileViewController initTheView] | -[MyMobileViewController initTheFourthView] | -[NSBundle(UINSBundleAdditions) loadNibNamed:owner:options:] | -[UINib instantiateWithOwner:options:] | -[UINibDecoder decodeObjectForKey:] | UINibDecoderDecodeObjectForValue | UINibDecoderDecodeObjectForValue | -[UIRuntimeEventConnection initWithCoder:] | -[UIRuntimeConnection initWithCoder:] | -[UINibDecoder decodeObjectForKey:] | UINibDecoderDecodeObjectForValue | -[UIClassSwapper initWithCoder:] | -[UIView initWithCoder:] | -[UINibDecoder decodeObjectForKey:] | UINibDecoderDecodeObjectForValue | UINibDecoderDecodeObjectForValue | -[UIImageView initWithCoder:] | -[UINibDecoder decodeObjectForKey:] | UINibDecoderDecodeObjectForValue | -[UIImageNibPlaceholder initWithCoder:] | _UIImageAtPath | _UICacheNameForImageAtPath | +[NSString stringWithFormat:] | -[NSPlaceholderString initWithFormat:locale:arguments:] | _CFStringCreateWithFormatAndArgumentsAux2 | __CFStringAppendFormatCore | CFStringAppend | __CFStringChangeSizeMultiple | CFAllocatorDeallocate | __CFAllocatorSystemDeallocate | malloc_zone_free 


ALLOC 0x7d121870-0x7d12189f [size=48]: thread_4fd11d4 |start | main | UIApplicationMain | GSEventRun | GSEventRunModal | CFRunLoopRunInMode | CFRunLoopRunSpecific | __CFRunLoopRun | __CFRunLoopDoSources0 | __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ | _UIApplicationHandleEventQueue | +[CATransaction flush] | CA::Transaction::commit() | CA::Context::commit_transaction(CA::Transaction*) | CA::Layer::layout_and_display_if_needed(CA::Transaction*) | CA::Layer::layout_if_needed(CA::Transaction*) | -[CALayer layoutSublayers] | -[NSObject performSelector:withObject:] | -[UIView(CALayerDelegate) layoutSublayersOfLayer:] | -[UILayoutContainerView layoutSubviews] | -[UINavigationController __viewWillLayoutSubviews] | -[UINavigationController _startDeferredTransitionIfNeeded:] | -[UINavigationController _startCustomTransition:] | -[UIViewController view] | -[UIViewController loadViewIfRequired] | -[MyMobileViewController viewDidLoad] | -[MyMobileViewController initTheView] | -[MyMobileViewController initTheFourthView] | -[NSBundle(UINSBundleAdditions) loadNibNamed:owner:options:] | -[UINib instantiateWithOwner:options:] | -[UINibDecoder decodeObjectForKey:] | UINibDecoderDecodeObjectForValue | UINibDecoderDecodeObjectForValue | -[UIRuntimeEventConnection initWithCoder:] | -[UIRuntimeConnection initWithCoder:] | -[UINibDecoder decodeObjectForKey:] | UINibDecoderDecodeObjectForValue | -[UIClassSwapper initWithCoder:] | -[UIView initWithCoder:] | -[UINibDecoder decodeObjectForKey:] | UINibDecoderDecodeObjectForValue | UINibDecoderDecodeObjectForValue | -[UIImageView initWithCoder:] | -[UIView initWithCoder:] | UIViewCommonInitWithFrame | -[UIView _createLayerWithFrame:] | _objc_rootAlloc | class_createInstance | calloc | malloc_zone_calloc 


Binary Images:

   0x58000 -   0x6fafe3 +com.whty.MobileFlagship (1.3 - 1.3.2) <B43C39D8-1D2F-357C-AF00-482E165C9E3C> /Users/wurongbiao/Library/Developer/CoreSimulator/Devices/1A5BC93D-EDC2-44E4-8D0D-21253866FDEC/data/Containers/Bundle/Application/E0532AFD-4997-4DBE-881C-D297E1942FE6/MobileFlagship.app/MobileFlagship

  0xabd000 -   0xae123b +dyld_sim (0.0 - ???) <1DD50FCA-ADA6-37E4-8BCD-39F9E2BE13F3> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/usr/lib/dyld_sim

  0xb19000 -   0xb20ff3 +libBacktraceRecording.dylib (56044) <C89F4E28-E01B-3EF9-8272-7A8E22255040> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/usr/lib/libBacktraceRecording.dylib

  0xb27000 -   0xb36fff +libz.1.dylib (55) <CB7BA848-2C4F-3E6A-9168-161B2BAE45AA> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/usr/lib/libz.1.dylib

  0xb3c000 -   0xba3fff  com.apple.SystemConfiguration (1.14 - 1.14) <D6E77CAA-A5DF-35A3-903C-3AD18D15A2D7> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/Frameworks/SystemConfiguration.framework/SystemConfiguration

  0xbd0000 -   0xd21ff3  com.apple.CoreText (352.0 - 450.2) <BA449391-A5CB-34E9-9DF2-51C8E16A1C57> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/Frameworks/CoreText.framework/CoreText

  0xdab000 -   0xf9bffb +libicucore.A.dylib (531.27.3) <1A4B6CEE-8AAC-3FB7-889B-F2CBF6071DB8> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/usr/lib/libicucore.A.dylib

 0x1043000 -  0x10faffb  com.apple.coretelephony (113 - 2338) <9010E8D1-05ED-3C74-98F8-935D21AC2FCA> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/Frameworks/CoreTelephony.framework/CoreTelephony

 0x1156000 -  0x124affb +libiconv.2.dylib (42) <27D5E6E1-1255-35F9-9FE0-A6ED6ED4800C> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/usr/lib/libiconv.2.dylib

 0x1259000 -  0x1270ff7  com.apple.CoreVideo (1.8 - 144.1) <448E89B4-F2F5-3310-9D91-6FCE329E6344> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/Frameworks/CoreVideo.framework/CoreVideo

 0x1283000 -  0x12fbff7  com.apple.CoreMedia (1.0 - 1560.67) <A4713680-D3E9-33AB-8997-4C2B92E72609> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/Frameworks/CoreMedia.framework/CoreMedia

 0x1346000 -  0x151fff7  com.apple.avfoundation (2.0 - 887.50) <B37D1B16-EE46-375F-AB5A-AC91625C5BA0> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/Frameworks/AVFoundation.framework/AVFoundation

 0x1667000 -  0x1744ff3  com.apple.MobileCoreServices (66 - 66) <C97C437D-052A-3247-8882-878C98671448> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/Frameworks/MobileCoreServices.framework/MobileCoreServices

 0x17a6000 -  0x1a30ffb  com.apple.CFNetwork (711.1.12 - 711.1.12) <5E16EF0B-03FE-30B7-91B2-7B490583E8A1> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/Frameworks/CFNetwork.framework/CFNetwork

 0x1b7b000 -  0x1d1cffb  com.apple.QuartzCore (1.10 - 361.1) <F1F234B5-0A78-398E-83D5-97764ED677F0> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/Frameworks/QuartzCore.framework/QuartzCore

 0x1dbd000 -  0x1ec7ffb +libxml2.2.dylib (25.6) <C5EF2A2A-3876-3B99-98B8-67C62FDD3561> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/usr/lib/libxml2.2.dylib

 0x1ef7000 -  0x20afff7 +CoreGraphics (747.1) <A314AEF7-DCD0-34FA-8FDA-CEE4DC4290F2> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/Frameworks/CoreGraphics.framework/CoreGraphics

 0x210b000 -  0x2d10ffb  com.apple.UIKit (1.0 - 1000) <147232EB-68CB-3646-9BBA-D33A37E21304> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/Frameworks/UIKit.framework/UIKit

 0x32e8000 -  0x35ceff7  com.apple.Foundation (6.9 - 1141.1) <E1BBC567-EF3A-327C-960C-FD825DDF7049> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/Frameworks/Foundation.framework/Foundation

 0x3748000 -  0x393c45f +libobjc.A.dylib (647.1) <431C3B3E-89DC-33C8-8BB0-B7633153F899> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/usr/lib/libobjc.A.dylib

 0x395f000 -  0x3965ff7 +libSystem.dylib (1213) <7C23129A-8171-35AF-8DAA-4E1913C075FE> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/usr/lib/libSystem.dylib

 0x396e000 -  0x3c29fff +CoreData (519) <DA62F18F-631E-3B72-87D5-B3A617BAE52F> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/Frameworks/CoreData.framework/CoreData

 0x3d0f000 -  0x3da1fff  com.apple.AddressBook (1.0 - 30) <2B07A7DD-E66C-3BE3-8259-6CDA91941BCF> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/Frameworks/AddressBook.framework/AddressBook

 0x3de9000 -  0x3f82ff7  com.apple.AddressBookUI (1.0.0 - 1751.7) <E8E659C1-87A6-3B76-939D-8B04141CB195> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/Frameworks/AddressBookUI.framework/AddressBookUI

 0x407f000 -  0x436afff  com.apple.audio.toolbox.AudioToolbox (1.8 - 1.8) <C3551212-706B-3764-9F1A-1A156B42DF95> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/Frameworks/AudioToolbox.framework/AudioToolbox

 0x4444000 -  0x47f0fff  com.apple.CoreFoundation (6.9 - 1141.14) <507AC07C-D966-3411-8AFA-8340555D4BAA> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/Frameworks/CoreFoundation.framework/CoreFoundation

 0x4934000 -  0x4a34ff7  com.apple.messageui (1.0.0 - 1.0) <6FFD7850-6096-31CA-91D3-C70D8B2B11D3> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/Frameworks/MessageUI.framework/MessageUI

 0x4ac8000 -  0x4b2cffb  com.apple.Security (10.0 - ???) <9DEF061C-9416-3108-B1A1-0C8A669FE21C> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/Frameworks/Security.framework/Security

 0x4b65000 -  0x4b6afff +libcache_sim.dylib (69) <C29E4A04-4B70-334D-B278-5D6A6C97B0C3> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/usr/lib/system/libcache_sim.dylib

 0x4b70000 -  0x4b7fffb +libcommonCrypto.dylib (60061) <5D2344FE-34C7-3D6D-9416-11F2C7ECB541> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/usr/lib/system/libcommonCrypto.dylib

 0x4b8c000 -  0x4b91ff3 +libcompiler_rt.dylib (60.3) <4720909B-5258-3362-BEE2-6E68269F70BA> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/usr/lib/system/libcompiler_rt.dylib

 0x4b9b000 -  0x4ba3fff +libcopyfile.dylib (119.1.1) <5B87A951-B278-3150-ADF4-6C0072666DA5> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/usr/lib/system/libcopyfile.dylib

 0x4baa000 -  0x4c19fff +libcorecrypto.dylib (234.1.2) <8318A2D1-8DE0-3A52-A5BF-EBAB27DA7320> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/usr/lib/system/libcorecrypto.dylib

 0x4c4d000 -  0x4c7dffb +libdispatch.dylib (443.3.3) <214258BA-CFAD-38EC-92C1-3D3343AB0088> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/usr/lib/system/introspection/libdispatch.dylib

 0x4c9a000 -  0x4c9bffb +libdyld.dylib (353.5) <5EAE8C1C-A3D8-377E-8522-11A64E41849C> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/usr/lib/system/libdyld.dylib

 0x4ca1000 -  0x4ca1fff +liblaunch.dylib (560.3.4) <0AC14AEB-BACA-3487-9EA4-BFF69EA6F48E> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/usr/lib/system/liblaunch.dylib

 0x4ca8000 -  0x4cadff7 +libmacho_sim.dylib (857) <2EA5127A-6CA1-3EC3-B01F-AEE30AED4FF1> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/usr/lib/system/libmacho_sim.dylib

 0x4cb4000 -  0x4cb6fff +libremovefile.dylib (35) <0CA09688-F029-3C34-8D32-266C5824429E> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/usr/lib/system/libremovefile.dylib

 0x4cbc000 -  0x4cd6fff +libsystem_asl.dylib (267) <258C4419-57C3-3A72-9B74-21EF8B56821F> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/usr/lib/system/libsystem_asl.dylib

 0x4ce2000 -  0x4ce3ffb +libsystem_sim_blocks.dylib (65) <19E9476A-CBDE-3A20-9E57-3705E629E088> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/usr/lib/system/libsystem_sim_blocks.dylib

 0x4ce8000 -  0x4d7cfff +libsystem_sim_c.dylib (1046) <2767EACC-ED7E-3C84-AB3B-05534EDF8C3E> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/usr/lib/system/libsystem_sim_c.dylib

 0x4da2000 -  0x4da4fff +libsystem_sim_configuration.dylib (700.3.1) <02943E37-8DE9-3892-B1E2-9A4FC198DFA0> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/usr/lib/system/libsystem_sim_configuration.dylib

 0x4dab000 -  0x4dacfff +libsystem_coreservices.dylib (7) <7E76942F-B6BF-395C-BE01-3CD06A851660> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/usr/lib/system/libsystem_coreservices.dylib

 0x4db2000 -  0x4dc7ffb +libsystem_coretls.dylib (35.3.2) <809C9D26-A080-3762-ADB4-F81604547D26> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/usr/lib/system/libsystem_coretls.dylib

 0x4dd7000 -  0x4ddffff +libsystem_sim_dnssd.dylib (561) <998014AB-7949-34B5-B096-A256FD87892E> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/usr/lib/system/libsystem_sim_dnssd.dylib

 0x4de6000 -  0x4e10ff3 +libsystem_sim_info.dylib (459) <7B7511DD-9E22-3B7F-9429-9849A3629312> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/usr/lib/system/libsystem_sim_info.dylib

 0x4e22000 -  0x4e27fff +libsystem_sim_kernel.dylib (141) <ACCBEF6E-BEC2-36FA-BAC7-FA0175D618AB> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/usr/lib/system/libsystem_sim_kernel.dylib

 0x4e30000 -  0x4e60fff +libsystem_sim_m.dylib (3086.1) <2B84337D-006D-3278-B9EC-0D05892B02E9> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/usr/lib/system/libsystem_sim_m.dylib

 0x4e68000 -  0x4e82ff7 +libsystem_malloc.dylib (55.3.1) <0D38AAEE-BD9A-37A5-BBD7-602D800F7DEB> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/usr/lib/system/libsystem_malloc.dylib

 0x4e8b000 -  0x4eceff7 +libsystem_network.dylib (410.1) <0B0D33B6-7139-344B-8203-47A2E5727546> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/usr/lib/system/libsystem_network.dylib

 0x4ef0000 -  0x4efafff +libsystem_notify.dylib (134.1.1) <9A2C86FD-4692-31F3-867E-E445A6E924DF> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/usr/lib/system/libsystem_notify.dylib

 0x4f03000 -  0x4f05ffb +libsystem_sim_platform.dylib (141) <650BFD92-A848-3F0B-A22C-55DF34FF9577> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/usr/lib/system/libsystem_sim_platform.dylib

 0x4f0b000 -  0x4f0cfff +libsystem_sim_pthread.dylib (141) <3AA34EBA-A2AA-3673-9E7F-DED4AA34BC4A> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/usr/lib/system/libsystem_sim_pthread.dylib

 0x4f13000 -  0x4f16ff7 +libsystem_sim_sandbox.dylib (359.1.1) <46867D70-E2CB-316B-B8D6-AE4B30087166> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/usr/lib/system/libsystem_sim_sandbox.dylib

 0x4f1d000 -  0x4f24fff +libsystem_sim_trace.dylib (72) <BEE53863-0DEC-33B1-BFFB-8F7AE595CC73> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/usr/lib/system/libsystem_sim_trace.dylib

 0x4f2e000 -  0x4f35ff7 +libunwind_sim.dylib (126.2) <5732B562-0A0C-3C24-AE1A-F9F72AFB866B> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/usr/lib/system/libunwind_sim.dylib

 0x4f3d000 -  0x4f6bfff +libxpc.dylib (560.3.4) <A854576A-3D30-3BF9-B2EC-B36C4B9E393C> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/usr/lib/system/libxpc.dylib

 0x4f85000 -  0x4fa4fff  libsystem_kernel.dylib (2782.10.72) <C88D4054-EF6D-31F9-A9DC-B74160B91C26> /usr/lib/system/libsystem_kernel.dylib

 0x4fb9000 -  0x4fbfff3  libsystem_platform.dylib (63) <509993B7-3F26-3360-B899-0BBB15152516> /usr/lib/system/libsystem_platform.dylib

 0x4fc8000 -  0x4fd0fff  libsystem_pthread.dylib (105.10.1) <4A229519-29A1-3ABF-8CEF-43BCE4ACDA06> /usr/lib/system/libsystem_pthread.dylib

 0x4fda000 -  0x5001fff +libc++abi.dylib (126.2) <C7DDC43A-896C-349A-A846-094855C8723B> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/usr/lib/libc++abi.dylib

 0x500e000 -  0x5075ff7 +libc++.1.dylib (235.1) <E141A74C-BFEF-3099-B545-5D8CE584FAB2> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/usr/lib/libc++.1.dylib

 0x50c5000 -  0x50d8ff7 +libbsm.0.dylib (28.1) <5B46DAB3-5C97-39F2-8C57-8CDB37E8A857> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/usr/lib/libbsm.0.dylib

 0x50e1000 -  0x50e1ffb  com.apple.FontServices (1.0 - 1) <2E3CAF9D-C76E-373E-BD3A-6DD2C67657B8> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/PrivateFrameworks/FontServices.framework/FontServices

 0x50e6000 -  0x50ffff7  com.apple.GraphicsServices (1.0 - 1.0) <0B68539C-C721-370F-BC24-081C24CBDB46> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/PrivateFrameworks/GraphicsServices.framework/GraphicsServices

 0x5114000 -  0x5410fff  com.apple.ImageIO.framework (3.2.0 - 1140) <DD0E5358-DE14-3B07-AA2D-16CEF63D9717> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/Frameworks/ImageIO.framework/ImageIO

 0x549d000 -  0x5591fff +libFontParser.dylib (129.2) <3A0E3A55-5458-3201-A314-22FC62CD2A5B> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/PrivateFrameworks/FontServices.framework/libFontParser.dylib

 0x5620000 -  0x563bffb +libMobileGestalt.dylib (297.1.14) <0F01A7BC-FCC5-3712-8B3C-9810D7CAE96B> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/usr/lib/libMobileGestalt.dylib

 0x565d000 -  0x565dfff  com.apple.Accelerate (1.10 - Accelerate 1.10) <FD638D54-19C2-32F4-8617-060C3DE23CA9> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/Frameworks/Accelerate.framework/Accelerate

 0x5661000 -  0x5ab6fdf  com.apple.vImage (8.0 - 8.0) <5ACE6026-578A-3605-96EC-2A5D6DCBF361> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/Frameworks/Accelerate.framework/Frameworks/vImage.framework/vImage

 0x5b03000 -  0x5b03fff  com.apple.Accelerate.vecLib (3.10 - vecLib 3.10) <CC4E0DF1-9270-359D-A47B-64A0021B15A9> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/vecLib

 0x5b07000 -  0x5c15fe7 +libvDSP.dylib (514) <E18EAC97-3E12-3B09-A934-EBAC6A6D68D1> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libvDSP.dylib

 0x5c23000 -  0x6021ff3 +libLAPACK.dylib (1128) <F89FB2A3-C6AE-36BF-9B0C-999196AFD564> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libLAPACK.dylib

 0x604f000 -  0x61c0ff3 +libBLAS.dylib (1128) <3750D099-D098-3FE2-82F0-26BBB926DDC1> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libBLAS.dylib

 0x61d9000 -  0x627bfff +libvMisc.dylib (514) <747BE0E2-EE11-32E5-9133-E522E380F7A2> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libvMisc.dylib

 0x6285000 -  0x629eff3 +libLinearAlgebra.dylib (1128) <B0D7610C-7C02-330E-9AA3-37476D2407A2> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libLinearAlgebra.dylib

 0x62a7000 -  0x6317ffb  com.apple.framework.IOKit (2.0.2 - 1051.3.7) <46A3F47A-F49E-3C70-957A-B011DA2E8F3B> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/Frameworks/IOKit.framework/Versions/A/IOKit

 0x6345000 -  0x6368ff7 +libextension.dylib (51.2) <267311C2-DF82-3675-8146-359F3B944598> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/usr/lib/libextension.dylib

 0x6382000 -  0x63b5ffb +libarchive.2.dylib (30) <433932BE-1557-34E7-B9F8-2BD7BBF4A6BF> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/usr/lib/libarchive.2.dylib

 0x63c0000 -  0x63dfffb +libCRFSuite.dylib (32) <0512F231-7D48-328C-980E-71DF706F8FC5> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/usr/lib/libCRFSuite.dylib

 0x63ea000 -  0x63ebffb +liblangid.dylib (114) <323140D6-F626-3A35-B6B9-B17AD46AE97E> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/usr/lib/liblangid.dylib

 0x63f0000 -  0x64ddfff +libsqlite3.dylib (162) <D70710B4-9972-3189-80CB-1EFBEB605EAC> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/usr/lib/libsqlite3.dylib

 0x64f2000 -  0x64ffffb +libbz2.1.0.dylib (36) <A3C34000-C839-3998-A2A9-10218F5F29A7> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/usr/lib/libbz2.1.0.dylib

 0x6505000 -  0x6522fff +liblzma.5.dylib (7) <296F10B6-8D1A-313E-9313-D4F5B1154881> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/usr/lib/liblzma.5.dylib

 0x652a000 -  0x6575ff3  com.apple.AppleJPEG (1.0 - 1) <96921A56-6BA8-38F8-8763-2CE9E2EF93CB> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/PrivateFrameworks/AppleJPEG.framework/AppleJPEG

 0x6581000 -  0x6588fff  com.apple.datamigration (1.0 - 1.0) <274168C9-62A1-35A4-A43F-11164106AAF3> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/PrivateFrameworks/DataMigration.framework/DataMigration

 0x6592000 -  0x65a1ff7  com.apple.commonutilities (8.0 - 900) <ACBD700B-3B7E-3C8F-994E-E1EEAF7946D1> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/PrivateFrameworks/CommonUtilities.framework/CommonUtilities

 0x65ac000 -  0x65dbff3 +libTelephonyUtilDynamic.dylib (802.1) <C96D77BF-E113-3F12-A478-90F9CBD6EF77> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/usr/lib/libTelephonyUtilDynamic.dylib

 0x660c000 -  0x6664ffb  com.apple.AppSupport (1.0.0 - 29) <F2F53271-AAFE-30AD-A3B4-A04B43ECD14A> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/PrivateFrameworks/AppSupport.framework/AppSupport

 0x6699000 -  0x66a8fff  com.apple.opengles (10.1.5 - 10.1.5) <82D389D7-22A5-3FED-85EB-266979293502> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/Frameworks/OpenGLES.framework/OpenGLES

 0x66b4000 -  0x66bffff +libGFXShared.dylib (10.1.5) <B52C618E-61DC-31A2-A56C-D39728D4EAC5> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/Frameworks/OpenGLES.framework/libGFXShared.dylib

 0x66c7000 -  0x670fff3 +libGLImage.dylib (10.1.5) <C1089EAC-D5C0-32E2-AFA6-504466A342AD> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/Frameworks/OpenGLES.framework/libGLImage.dylib

 0x6719000 -  0x671bffb +libCVMSPluginSupport.dylib (10.1.5) <57F13A44-C8AF-3317-8B74-71BB7F27ECF6> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/Frameworks/OpenGLES.framework/libCVMSPluginSupport.dylib

 0x6721000 -  0x672cffb +libCoreVMClient.dylib (88.2) <0DFE3F0B-F852-3C04-A431-533811AE9DE6> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/Frameworks/OpenGLES.framework/libCoreVMClient.dylib

 0x6736000 -  0x73ccf37 +libLLVMContainer.dylib (88.2) <8329C494-9555-3160-97CE-034A40EBD06E> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/Frameworks/OpenGLES.framework/libLLVMContainer.dylib

 0x7687000 -  0x7688ffb  com.apple.iphonesimulator.SimulatorClient (1.0 - 1) <079C8E0A-13D1-3A3B-8F08-BBA7581E9064> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/PrivateFrameworks/SimulatorClient.framework/SimulatorClient

 0x768e000 -  0x76e8ff7  com.apple.audio.CoreAudio (4.3.0 - 4.3.0) <D6E2ABF1-385F-3DBF-8FFE-4BF27D5AFAEA> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/Frameworks/CoreAudio.framework/CoreAudio

 0x770a000 -  0x777fff7 +libAVFAudio.dylib (117.3) <CFAF63C0-885D-3347-AA00-267529D34EBA> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/Frameworks/AVFoundation.framework/libAVFAudio.dylib

 0x77c5000 -  0x77c9ff3  com.apple.TCC (1.0 - 1) <7DA760F8-FDA9-3392-8A80-6794B2A0DE8B> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/PrivateFrameworks/TCC.framework/TCC

 0x77d1000 -  0x7ab5ff7  com.apple.MediaToolbox (1.0 - 1560.67) <102CF902-E31E-3E51-96D9-1975B1B79629> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/Frameworks/MediaToolbox.framework/MediaToolbox

 0x7b8c000 -  0x7e96ff7  com.apple.VideoToolbox (1.0 - 1560.67) <E129B1DA-D09A-36FC-935E-F318E61BD9D4> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/Frameworks/VideoToolbox.framework/VideoToolbox

 0x7f13000 -  0x7f50ff7  com.apple.Celestial (1.0 - 1560.67) <D7155073-28C6-3D03-8950-1198B45702D3> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/PrivateFrameworks/Celestial.framework/Celestial

 0x7f90000 -  0x7fb0ff3  com.apple.AssetsLibraryServices (1.0 - 1) <2A949EA8-E68B-3124-804B-4E655B3BB951> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/PrivateFrameworks/AssetsLibraryServices.framework/AssetsLibraryServices

 0x7fcd000 -  0x7fd2fff +Apple-Inc.BTLEAudioController (1.0 - 1) <9EED5F9E-4C6F-31F1-BECA-F24819ADC5D8> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/PrivateFrameworks/BTLEAudioController.framework/BTLEAudioController

 0x7fdc000 -  0x8001ff3  com.apple.SpringBoardServices (1.0 - 1.0) <F94AE2C4-8615-3A58-BF7E-F1CAFCB7BA15> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/PrivateFrameworks/SpringBoardServices.framework/SpringBoardServices

 0x8020000 -  0x806fffb  com.apple.BaseBoard (1.0 - 1) <BB46A6AC-70B8-3A40-9FCE-A685EEB7F835> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/PrivateFrameworks/BaseBoard.framework/BaseBoard

 0x80a7000 -  0x80d2ff7  com.apple.FrontBoardServices (1.0 - 1) <F515E983-3AAD-3A2E-A9E4-E319D77ADDF1> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/PrivateFrameworks/FrontBoardServices.framework/FrontBoardServices

 0x80f6000 -  0x811aff3  com.apple.BackBoardServices (1.0 - 1.0) <7AF4C4DF-131D-3C12-B852-17A3AD826522> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/PrivateFrameworks/BackBoardServices.framework/BackBoardServices

 0x813c000 -  0x814bfff  com.apple.AssertionServices (1.0 - 1) <D2F2D1D7-69FD-3DA4-8F9A-C26A08DF9CBD> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/PrivateFrameworks/AssertionServices.framework/AssertionServices

 0x815d000 -  0x8165ff7  com.apple.MediaAccessibility (1.0 - 61) <A5A48D53-EF97-39E3-B3DF-ED9873E17197> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/Frameworks/MediaAccessibility.framework/MediaAccessibility

 0x8171000 -  0x826eff3  com.apple.UIFoundation (1.0 - 1) <BD99B6B1-B964-365B-BBB8-6331F892621C> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/PrivateFrameworks/UIFoundation.framework/UIFoundation

 0x82c8000 -  0x82e8ff7  com.apple.pluginkit.framework (1.0 - 1) <3A586D6C-C994-3D29-AA69-E112C16D7C89> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/PrivateFrameworks/PlugInKit.framework/PlugInKit

 0x82fe000 -  0x83b0fff  com.apple.CoreUI (1.0 - 298.1) <81B48D76-46F4-381D-9285-796AEE5BF482> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/PrivateFrameworks/CoreUI.framework/CoreUI

 0x843f000 -  0x8450ffb  com.apple.MobileAssets (1.0 - 1) <EBD81517-89CA-3E21-B930-80C15650E7A5> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/PrivateFrameworks/MobileAsset.framework/MobileAsset

 0x845d000 -  0x84aefff  com.apple.TelephonyUtilities (1.0 - 1.0) <04162196-41CE-38DE-A7A2-97CD3C5B061D> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/PrivateFrameworks/TelephonyUtilities.framework/TelephonyUtilities

 0x84e8000 -  0x866aff3  com.apple.CoreImage (1.2.0 - 277) <D99F5806-5093-35B8-A8F4-D089611506C0> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/Frameworks/CoreImage.framework/CoreImage

 0x874f000 -  0x8776ffb  com.apple.DictionaryServices (1.2 - ???) <E3C58F2D-F1EA-36F7-A098-B8FA9B05ED91> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/PrivateFrameworks/DictionaryServices.framework/DictionaryServices

 0x8793000 -  0x87ccff7  com.apple.TextInput (1.0) <0B514B7D-13E7-351A-9500-24DE8D2FA154> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/PrivateFrameworks/TextInput.framework/TextInput

 0x87fa000 -  0x8903ff7  com.apple.WebKitLegacy (8600 - 8600.1.4.11.10) <CEEEB837-9F3D-3096-AA8F-51B87BCB1FAE> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/PrivateFrameworks/WebKitLegacy.framework/WebKitLegacy

 0x89a7000 -  0xa04dfff  com.apple.WebCore (8600 - 8600.1.4.11.12) <28909A37-72BE-3508-BA69-B61C7E05BA2F> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/PrivateFrameworks/WebCore.framework/WebCore

 0xa8dc000 -  0xa9b7ff3  com.apple.ProofReader (2.2.1 - 266.2) <D61C2956-F3CE-3026-B412-C05C10949437> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/PrivateFrameworks/ProofReader.framework/ProofReader

 0xa9dd000 -  0xa9ebff3 +libAccessibility.dylib (1541.6.8) <23988C8D-4BDF-3EE4-829B-ADAA33D4C0C4> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/usr/lib/libAccessibility.dylib

 0xa9fb000 -  0xaa4fff7  com.apple.framework.PrintKit (175 - 175) <C7FCCBAD-7713-34D1-84A6-2F11A952BE61> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/PrivateFrameworks/PrintKit.framework/PrintKit

 0xaa71000 -  0xaad5ffb  com.apple.PhysicsKit (1.0 - 1) <D9606D60-10B4-31C3-B9D6-F9323C82816C> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/PrivateFrameworks/PhysicsKit.framework/PhysicsKit

 0xaafd000 -  0xaf3dff7  com.apple.vision.FaceCore (3.1.6 - 3.1.6) <D39CE1E7-5359-3B72-85FE-E6C0C7894C78> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/PrivateFrameworks/FaceCore.framework/FaceCore

 0xb153000 -  0xb2afff7 +libFosl_dynamic.dylib (15.11) <BA32A03D-D564-3931-BC5B-8E4F19335024> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/usr/lib/libFosl_dynamic.dylib

 0xb327000 -  0xb32bfff  com.apple.communicationsfilter (10.0 - 1000) <85D0AF4B-91C2-3599-B732-EBE50869D7FE> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/PrivateFrameworks/CommunicationsFilter.framework/CommunicationsFilter

 0xb331000 -  0xb3adffb  com.apple.imfoundation (10.0 - 1000) <B4131626-1E92-3BEE-A2D2-89041DDC4F75> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/PrivateFrameworks/IMFoundation.framework/IMFoundation

 0xb3e4000 -  0xb419ff7  com.apple.Accounts (113 - 113) <CD38B9E4-62DA-325D-9350-4723FF5F7C5C> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/Frameworks/Accounts.framework/Accounts

 0xb43c000 -  0xb441ff3  com.apple.AggregateDictionary (1.0 - 1) <623C8C2D-CBD2-3D32-B3D6-DABDE2E5C416> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/PrivateFrameworks/AggregateDictionary.framework/AggregateDictionary

 0xb449000 -  0xb477ffb  com.apple.dataaccess.dataaccessexpress.framework (1.0 - 1.0) <B92F0FC5-9894-3E96-A09C-C7F69A8F6D45> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/PrivateFrameworks/DataAccessExpress.framework/DataAccessExpress

 0xb496000 -  0xb499fff  com.apple.OAuth (25 - 25) <97A02A4A-AA6B-3320-838F-42BB6B418A11> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/PrivateFrameworks/OAuth.framework/OAuth

 0xb49f000 -  0xb4d0ffb +libtidy.A.dylib (15.14) <9E653C92-48C6-3FDB-8B1C-013A56C24626> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/usr/lib/libtidy.A.dylib

 0xb4de000 -  0xb50bff3 +libxslt.1.dylib (13) <083F44D7-74CC-3B1B-A35D-0B3785016C50> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/usr/lib/libxslt.1.dylib

 0xb518000 -  0xbb35fff +JavaScriptCore (7600.1.4.11.8) <D9784B86-86D6-34A3-A1EE-32E9BD9DC2E2> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/Frameworks/JavaScriptCore.framework/JavaScriptCore

 0xbc87000 -  0xbcd1ff3  com.apple.LanguageModeling (1.0 - 1) <E71C3121-69B9-354E-A49C-9FA51B231109> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/PrivateFrameworks/LanguageModeling.framework/LanguageModeling

 0xbce0000 -  0xbcf5ffb +libcmph.dylib (4) <01BB9149-8CB6-3ED5-BA01-4882B2E000CB> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/usr/lib/libcmph.dylib

 0xbd03000 -  0xbd25ffb +libresolv.9.dylib (57) <209C94A4-37A6-321A-A69E-76DF7917338C> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/usr/lib/libresolv.9.dylib

 0xbd30000 -  0xbd37ff3  com.apple.IntlPreferences (1.0 - 149.1) <0D967148-B57C-3C21-A00C-B168868729C7> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/PrivateFrameworks/IntlPreferences.framework/IntlPreferences

 0xbd3f000 -  0xbe61fff  com.apple.Message (2.0 - 20) <FE60EB18-4648-30D7-B876-791ABF97B0ED> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/PrivateFrameworks/Message.framework/Message

 0xbef6000 -  0xbf66ff3  com.apple.QuickLook (2.0 - 497.1) <343CE00A-02AD-3A89-9871-A2A3F4263B75> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/Frameworks/QuickLook.framework/QuickLook

 0xbfac000 -  0xc310ff7  com.apple.GeoServices (1.0 - 982.24) <3F9F2DA2-00A9-38F0-878C-B20628CF4A45> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/PrivateFrameworks/GeoServices.framework/GeoServices

 0xc4b3000 -  0xc58dff7  com.apple.managedconfiguration (1.0 - 1.0) <0AB1BB2E-8685-3994-9259-AD9454A0BCAE> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/PrivateFrameworks/ManagedConfiguration.framework/ManagedConfiguration

 0xc600000 -  0xc6b8ffb  com.apple.cloudkit.CloudKit (259.6 - 259.6) <C61A0E39-95F4-3AC1-BE6A-C71C8660D91B> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/Frameworks/CloudKit.framework/CloudKit

 0xc720000 -  0xc76bffb  com.apple.content.index.framework (2.0) <FFDEF0B0-6865-327E-B227-8C26738BFB04> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/PrivateFrameworks/ContentIndex.framework/ContentIndex

 0xc789000 -  0xc78cfff  com.apple.MessageSupport (1.0 - 1) <9C094FE5-363B-358A-8540-698706D83D04> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/PrivateFrameworks/MessageSupport.framework/MessageSupport

 0xc794000 -  0xc7efff7  com.apple.dataaccess.framework (1.0 - 1.0) <F9F83237-84E7-37F6-B2EE-B57C53898FC0> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/PrivateFrameworks/DataAccess.framework/DataAccess

 0xc81e000 -  0xc848ff7  com.apple.persistentconnection (1.0 - 1.0) <4A56778A-97DE-3FF2-A10F-718B63389935> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/PrivateFrameworks/PersistentConnection.framework/PersistentConnection

 0xc869000 -  0xc8bbfff  com.apple.MIME (2.0 - 20) <95855220-7CCD-3819-8F9F-F2D7A2A8CFC5> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/PrivateFrameworks/MIME.framework/MIME

 0xc8e8000 -  0xc8effff  com.apple.CertUI (1.0 - 1) <DA916044-7B1A-374E-923D-938B92DC823B> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/PrivateFrameworks/CertUI.framework/CertUI

 0xc8f8000 -  0xc962ffb  com.apple.corelocation (1.0 - 1753.17) <05D2DEC7-1351-30C8-8CA2-AB37C4805E34> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/Frameworks/CoreLocation.framework/CoreLocation

 0xc97b000 -  0xc996ff7  com.apple.aps.framework (4.0 - 4.0) <DF0EF83A-77D7-3332-A3D7-F51FA313407B> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/PrivateFrameworks/ApplePushService.framework/ApplePushService

 0xc9ac000 -  0xc9d3ffb  com.apple.CoreBluetooth (1.0 - 1) <137B6018-79A0-3E25-A3D2-82B56FF95FBE> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/Frameworks/CoreBluetooth.framework/CoreBluetooth

 0xc9ed000 -  0xc9fdfff  com.apple.ProtocolBuffer (1 - 225) <129864F4-4FB4-3AE3-B25B-A1B1AB8A83EC> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/PrivateFrameworks/ProtocolBuffer.framework/ProtocolBuffer

 0xca09000 -  0xca10ffb  com.apple.BluetoothManager (1.0 - 1) <5EB4BC02-7CA7-3DA9-BE01-608C625B09E7> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/PrivateFrameworks/BluetoothManager.framework/BluetoothManager

 0xca1b000 -  0xca29ffb  com.apple.MobileBluetooth (1.0 - 1.0) <45714EA0-2834-3D2F-B81D-5128FF5A2648> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/PrivateFrameworks/MobileBluetooth.framework/MobileBluetooth

 0xca33000 -  0xca7dffb  com.apple.AppleAccount (1.0 - 1.0) <AF4E6E66-5461-37C4-8739-7B8223F35DA4> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/PrivateFrameworks/AppleAccount.framework/AppleAccount

 0xcab3000 -  0xcae1fff  com.apple.WebBookmarks (1.0 - 1.0) <B4CD4556-4D5B-3226-B7DA-ECD902475D48> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/PrivateFrameworks/WebBookmarks.framework/WebBookmarks

 0xcafd000 -  0xcc6cfff  com.apple.eventkit (1.0.0 - 1.0) <A6A59FC2-291A-3D8A-BA62-89DB5113C927> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/Frameworks/EventKit.framework/EventKit

 0xcd25000 -  0xcd58ffb  com.apple.iCalendar (7.0 - 200) <56C6C7A3-8673-307B-967D-C094116765CC> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/PrivateFrameworks/iCalendar.framework/iCalendar

 0xcd78000 -  0xcd9fffb  com.apple.Notes (1.0) <4A19E20B-4B7E-37EC-B9B3-C40FFDDD0F81> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/PrivateFrameworks/Notes.framework/Notes

 0xcdb4000 -  0xce29fff  com.apple.coredav (1.0.1 - 261) <23B751AF-A598-3EA5-9A8D-2475D80F2D32> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/PrivateFrameworks/CoreDAV.framework/CoreDAV

 0xce76000 -  0xcfa7ff3 +StoreServices (1243.8) <1AF9E34D-4F1F-313D-91B5-2C37E5E5D6FF> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/PrivateFrameworks/StoreServices.framework/StoreServices

 0xd06e000 -  0xd0d4fff  com.apple.accounts.AccountsDaemon (113 - 113) <4C0B23D3-4709-3354-901D-FC31E6E6D125> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/PrivateFrameworks/AccountsDaemon.framework/AccountsDaemon

 0xd100000 -  0xd109ff3  com.apple.AOSNotification (1.7.0 - 830) <3C1C8930-F9BA-36F4-BD1A-688F61A5DC9F> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/PrivateFrameworks/AOSNotification.framework/AOSNotification

 0xd114000 -  0xd124ff7  com.apple.MailServices (1.0 - 1) <790824B1-B857-3BFF-9D74-82838A42B9FA> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/PrivateFrameworks/MailServices.framework/MailServices

 0xd136000 -  0xd141fff  com.apple.MobileInstallation (2.0 - 1.0) <85DD47C7-91DA-3DF7-A30E-D3DD7FB6CB8C> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/PrivateFrameworks/MobileInstallation.framework/MobileInstallation

 0xd14b000 -  0xd14fffb  com.apple.MobileSystemServices (1.0 - 1) <160B3971-542E-3022-B053-777712622CB0> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/PrivateFrameworks/MobileSystemServices.framework/MobileSystemServices

 0xd156000 -  0xd187ff3  com.apple.GSS (4.0 - 2.0) <E89EEC6D-AA90-3735-A4E8-F6B7C4521E83> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/Frameworks/GSS.framework/GSS

 0xd1a1000 -  0xd1a6ffb +libheimdal-asn1.dylib (398.3.2) <E1D1C296-75EC-3695-8DB5-2F5CD985BBFC> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/usr/lib/libheimdal-asn1.dylib

 0xd1ad000 -  0xd231ff7  com.apple.Heimdal (4.0 - 2.0) <B898F5FD-6B6D-3325-9E4E-10F4A1265933> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/PrivateFrameworks/Heimdal.framework/Heimdal

 0xd259000 -  0xd25cffb  com.apple.CommonAuth (4.0 - 2.0) <565911E2-0525-3628-B182-0F9F0826AD4E> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/PrivateFrameworks/CommonAuth.framework/CommonAuth

 0xd262000 -  0xd29bff7  com.apple.CalendarFoundation (8.0 - 291) <F9F7D34C-880E-360D-8D2C-729FED925148> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/PrivateFrameworks/CalendarFoundation.framework/CalendarFoundation

 0xd2be000 -  0xd2faffb  com.apple.bom (14.0 - 193.5) <69D95292-F7AC-3D50-AD1A-EA20F7330CF6> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/PrivateFrameworks/Bom.framework/Bom

 0xd30c000 -  0xd337ff3  com.apple.accountsui (1.0 - 1) <774DB706-CD79-3F35-A4AB-F5B1CD0BF720> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/PrivateFrameworks/AccountsUI.framework/AccountsUI

 0xd352000 -  0xd373fff  com.apple.CertInfo (1.0 - 1) <78938112-F656-3AC3-950C-A68F03F54BC1> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/PrivateFrameworks/CertInfo.framework/CertInfo

 0xd38a000 -  0xd45effb  com.apple.preferences-framework (1 - 1.0) <4529C9FD-7EE3-3E34-BAC1-0B33F14B5973> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/PrivateFrameworks/Preferences.framework/Preferences

 0xd4e2000 -  0xd4edffb  com.apple.mobileicons.framework (1.0 - 1.0) <FEECC898-E96B-3E5F-88F3-471B51872470> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/PrivateFrameworks/MobileIcons.framework/MobileIcons

 0xd4f7000 -  0xd514ffb  com.apple.GenerationalStorage (2.0 - 223) <9FFDAD81-97CB-327C-9175-D5BC967A48C0> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/PrivateFrameworks/GenerationalStorage.framework/GenerationalStorage

 0xd527000 -  0xd75eff3  com.apple.MediaPlayer (1.0) <9D77B74F-F421-3A3A-B688-A511FAF39530> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/Frameworks/MediaPlayer.framework/MediaPlayer

 0xd899000 -  0xdc34ffb  com.apple.WebKit (8600 - 8600.1.4.11.10) <2017D3B9-7B76-30AC-B7DF-14E6D5FCEEF3> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/Frameworks/WebKit.framework/WebKit

 0xdecb000 -  0xded4ffb  com.apple.xpcobjects (1.0 - 1) <50CE1336-1ED6-3F28-A180-01D23692B552> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/PrivateFrameworks/XPCObjects.framework/XPCObjects

 0xdee0000 -  0xdf0fff3  com.apple.ChunkingLibrary (2.1 - 163.1) <46F2C5C4-F940-378B-AAAF-A6155390574D> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/PrivateFrameworks/ChunkingLibrary.framework/ChunkingLibrary

 0xdf1c000 -  0xdf32ff7  com.apple.MediaServices (1.0 - 1) <B501D60F-1E39-3211-8F03-1342BF4BF763> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/PrivateFrameworks/MediaServices.framework/MediaServices

 0xdf47000 -  0xdf96ff7  com.apple.itunesstore (1.0) <C4DDCF6D-B6CB-3165-B590-BC4DD483C9EB> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/PrivateFrameworks/iTunesStore.framework/iTunesStore

 0xdfcd000 -  0xe16eff3  com.apple.MusicLibrary (1.0.0 - 18) <E889F1A2-498E-3A75-8188-42FBF04B6751> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/PrivateFrameworks/MusicLibrary.framework/MusicLibrary

 0xe221000 -  0xe23cff3  com.apple.MediaRemote (1.0 - 1) <818E7C2F-C0AB-3CD1-9B60-2F654B127EA8> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/PrivateFrameworks/MediaRemote.framework/MediaRemote

 0xe254000 -  0xe2baff7  com.apple.HomeSharing (1.0 - 1) <AB5E9BAA-0938-3A8E-819A-CA9228CEAEE4> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/PrivateFrameworks/HomeSharing.framework/HomeSharing

 0xe2f4000 -  0xe2fcffb  com.apple.DAAPKit (1.0 - 1) <E49AA9C0-80B5-347C-8B53-F7E436F5F2BC> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/PrivateFrameworks/DAAPKit.framework/DAAPKit

 0xe307000 -  0xe3e1ff7  com.apple.CorePDF (5.0 - 5.0) <FBBF2722-E031-36C7-AD24-EBDC2415C787> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/PrivateFrameworks/CorePDF.framework/CorePDF

 0xe451000 -  0xe451ffb +libassertion_extension.dylib (43.3.1) <837A0A9F-AB6A-3EE7-96CF-E286DCE55090> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/usr/lib/libassertion_extension.dylib

 0xe456000 -  0xe464ff3  com.apple.corerecents (1.0 - 1) <0F06DA73-AA47-3EE5-AC50-102F05AE59B6> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/PrivateFrameworks/CoreRecents.framework/CoreRecents

 0xe473000 -  0xe475ff3  com.apple.ftclientservices (10.0 - 1000) <F12B86B6-4E79-3AE4-889F-C19F9C4A83E8> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/PrivateFrameworks/FTClientServices.framework/FTClientServices

 0xe47b000 -  0xe54dff7  com.apple.imcore (10.0 - 1000) <EDF5001B-8CBD-3939-BA81-38E8AC62B05F> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/PrivateFrameworks/IMCore.framework/IMCore

 0xe581000 -  0xe583fff  com.apple.marco (10.0 - 1000) <BD66D06E-F7FE-32CD-B57C-4D4E6E96358B> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/PrivateFrameworks/Marco.framework/Marco

 0xe589000 -  0xe5bafff  com.apple.facetimeservices (10.0 - 1000) <8B5A9AD0-58EC-375F-BFD8-10A72D444857> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/PrivateFrameworks/FTServices.framework/FTServices

 0xe5cc000 -  0xe643fff  com.apple.ids (10.0 - 1000) <9A89CB0E-B6BD-322E-80B5-EECAC4B1D3F9> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/PrivateFrameworks/IDS.framework/IDS

 0xe663000 -  0xe665fff  com.apple.diagnosticlogcollection (10.0 - 1000) <CD15B16E-C631-3B5E-961B-A7DFCC6ABA11> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/PrivateFrameworks/DiagnosticLogCollection.framework/DiagnosticLogCollection

 0xe66b000 -  0xe68fff3  com.apple.idsfoundation (10.0 - 1000) <4D155C77-07EB-3903-9583-4DFF60B753F0> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/PrivateFrameworks/IDSFoundation.framework/IDSFoundation

 0xe6d5000 -  0xe6e1fff +libGSFontCache.dylib (206.81) <E4008714-9DE3-3738-9C94-888FD08B3A3A> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/PrivateFrameworks/FontServices.framework/libGSFontCache.dylib

 0xe785000 -  0xe78bffb  com.apple.ConstantClasses (1.0 - 1) <7905A016-CFF8-359D-AD3B-1C97B704FD21> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/PrivateFrameworks/ConstantClasses.framework/ConstantClasses

 0xe794000 -  0xe797ffb +libCGXType.A.dylib (747.1) <2C77F195-BCD8-377D-877D-7A7165118AEC> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/Frameworks/CoreGraphics.framework/Resources/libCGXType.A.dylib

0x101de000 - 0x1020ffff  com.apple.CoreServicesInternal (220 - 220) <5DD528D7-115E-3854-A44A-97E9B46A7081> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/PrivateFrameworks/CoreServicesInternal.framework/CoreServicesInternal

0x12e3a000 - 0x12e63ff7 +libRIP.A.dylib (747.1) <E3C6326D-7696-39BB-8D23-9E6A17ECB9FF> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/Frameworks/CoreGraphics.framework/Resources/libRIP.A.dylib

0x12e72000 - 0x12e80ff7 +libCMSBuiltin.A.dylib (747.1) <73B3DD66-BD25-31C9-ACDB-4574CBAB0712> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/Frameworks/CoreGraphics.framework/Resources/libCMSBuiltin.A.dylib

0x8fe1f000 - 0x8fe52e03  dyld (0.0 - ???) <06B1254D-9BB9-327C-BA15-8F18FFF97586> /usr/lib/dyld



5、抱歉刷频这么多,直接复制过来的,这里和我们debug有关的就是开头那里的ALLOC段落:

ALLOC 0x7d121870-0x7d1218ef [size=128]: thread_4fd11d4 |start | main | UIApplicationMain | GSEventRun | GSEventRunModal | CFRunLoopRunInMode | CFRunLoopRunSpecific | __CFRunLoopRun | __CFRunLoopDoSources0 | __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ | _UIApplicationHandleEventQueue | +[CATransaction flush] | CA::Transaction::commit() | CA::Context::commit_transaction(CA::Transaction*) | CA::Layer::layout_and_display_if_needed(CA::Transaction*) | CA::Layer::layout_if_needed(CA::Transaction*) | -[CALayer layoutSublayers] | -[NSObject performSelector:withObject:] | -[UIView(CALayerDelegate) layoutSublayersOfLayer:] | -[UILayoutContainerView layoutSubviews] | -[UINavigationController __viewWillLayoutSubviews] | -[UINavigationController _startDeferredTransitionIfNeeded:] | -[UINavigationController _startCustomTransition:] | -[UIViewController view] | -[UIViewController loadViewIfRequired] | -[MyMobileViewController viewDidLoad] | -[MyMobileViewController initTheView] | -[MyMobileViewController initTheFourthView] | -[NSBundle(UINSBundleAdditions) loadNibNamed:owner:options:] | -[UINib instantiateWithOwner:options:] | -[UINibDecoder decodeObjectForKey:] | UINibDecoderDecodeObjectForValue | UINibDecoderDecodeObjectForValue | -[UIRuntimeEventConnection initWithCoder:] | -[UIRuntimeConnection initWithCoder:] | -[UINibDecoder decodeObjectForKey:] | UINibDecoderDecodeObjectForValue | -[UIClassSwapper initWithCoder:] | -[UIView initWithCoder:] | -[UINibDecoder decodeObjectForKey:] | UINibDecoderDecodeObjectForValue | UINibDecoderDecodeObjectForValue | -[UIImageView initWithCoder:] | -[UINibDecoder decodeObjectForKey:] | UINibDecoderDecodeObjectForValue | -[UIImageNibPlaceholder initWithCoder:] | _UIImageAtPath | _UICacheNameForImageAtPath | +[NSString stringWithFormat:] | -[NSPlaceholderString initWithFormat:locale:arguments:] | _CFStringCreateWithFormatAndArgumentsAux2 | __CFStringAppendFormatCore | CFStringAppend | __CFStringChangeSizeMultiple | CFAllocatorAllocate | __CFAllocatorSystemAllocate | malloc_zone_malloc 


可以看到,我这里的主要问题出现在代码段:

[MyMobileViewController viewDidLoad] | -[MyMobileViewController initTheView] | -[MyMobileViewController initTheFourthView] | 


6、到相关的类里找到对应的方法,打断点调试吧!这里离解决问题已经很近很近了!调试完最后别忘记关闭Zombile和malloc

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值