如何找出邮件的发送地点?

时间:2011-11-24 11:22:04

标签: objective-c ios

我们的应用在测试期间崩溃,向已解除分配的UINavigationItem发送消息。我看过使用乐器,但所有版本和保留看起来都很平衡;看起来有些东西挂在变量上而没有保留它。我想找到发送消息的位置,这样我就可以确保对象保持足够长的时间来接收消息。

控制台中的错误是:

-[UINavigationItem safeValueForKey:]: message sent to deallocated instance 0x11afab80

堆栈跟踪是:

 0 CoreFoundation ___forwarding___
 1 CoreFoundation _CF_forwarding_prep_0
 2 UIKit -[UINavigationItemButtonViewAccessibility(SafeCategory) accessibilityTraits]
 3 UIAccessibility -[NSObject(NSObjectAccessibility) accessibilityAttributeValue:]
 4 UIAccessibility _copyAttributeValueCallback
 5 AXRuntime _AXXMIGCopyAttributeValue
 6 AXRuntime _XCopyAttributeValue
 7 AXRuntime mshMIGPerform
 8 CoreFoundation __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE1_PERFORM_FUNCTION__
 9 CoreFoundation __CFRunLoopDoSource1
10 CoreFoundation __CFRunLoopRun
11 CoreFoundation CFRunLoopRunSpecific
12 CoreFoundation CFRunLoopRunInMode
13 GraphicsServices GSEventRunModal
14 GraphicsServices GSEventRun
15 UIKit UIApplicationMain
16 MyApp Functional Tests main [myapp]/main.m:14
17 MyApp Functional Tests start

...但我的代码中没有一个。如何找出邮件的发送地点?

1 个答案:

答案 0 :(得分:2)

使用命令:

Shell malloc_history process_id memory

例如。 Shell malloc_history process_id 0x11afab80

启用以下内容 1)MallocstackLogging 2)NsDebugEnabled 3)NSZombieEnabled

这将解决问题