Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

So I've been seeing this crash pretty frequently in Crashlytics, both on iPad and iPad 2, running iOS 5. It looks like it's caused by a memory warning, but the stack trace doesn't reference any of my application code, just iOS frameworks:

0    libobjc.A.dylib    objc_msgSend + 15
1    UIKit          -[UIViewController purgeMemoryForReason:] + 64
2    Foundation     __57-[NSNotificationCenter addObserver: selector: name: object:]_block_invoke_0 + 18
3    CoreFoundation     ___CFXNotificationPost_block_invoke_0 + 70
4    CoreFoundation     _CFXNotificationPost + 1406
5    Foundation     -[NSNotificationCenter postNotificationName: object: userInfo:] + 66
6    Foundation     -[NSNotificationCenter postNotificationName: object:] + 30
7    UIKit          -[UIApplication _performMemoryWarning] + 80
8    UIKit          -[UIApplication _receivedMemoryNotification] + 174
9    libdispatch.dylib  _dispatch_source_invoke + 516
10   libdispatch.dylib  _dispatch_queue_invoke + 50
11   libdispatch.dylib  _dispatch_main_queue_callback_4CF + 156
12   CoreFoundation     __CFRunLoopRun + 1268
13   CoreFoundation     CFRunLoopRunSpecific + 300
14   CoreFoundation     CFRunLoopRunInMode + 104
15   GraphicsServices   GSEventRunModal + 156
16   UIKit          UIApplicationMain + 1090
17   500px iOS      main.m line 12

I've googled high and low but can't find any solutions to this. It looks like this is caused by over-releasing a UIViewController instance, but I'm using ARC, so I don't see how that could be the case.

I'm at a loss of how to even approach this. I can't even tell which UIViewController subclass is causing the issue. I've tried reproducing the problem in the simulator and on the device, but I can't find what causes it. Has anyone seen anything like this or have suggestions on how to approach reproducing the issue?

share|improve this question
2  
Interesting. Usually, the next step on the stack would be a unloadViewIfReloadable call on that viewController. As we see a crash now, this either means that this method has not even been reached or that we already gotten behind that step. For the latter, check your viewDidUnload method implementations. That would be the next step I would consider. As a standard recommendation, enable zombies and trigger the memory warning on the simulator. – Till Jan 7 '12 at 22:19
I'll give that a shot and get back to you. Thanks! – Ash Furrow Jan 7 '12 at 22:49

1 Answer

up vote 10 down vote accepted

I think I've solved the issue. I was thinking about it, and the problem isn't the unloading of the UIViewController view, it's the posting of the actual low memory warning notification. There are several instances in my code where I call [[NSNotificationCenter defaultCenter] removeObserver:self]. This is fine in the dealloc method, but there were two instances of this in viewDidUnload methods.

I noticed this when my breakpoint in didReceiveMemory of one of the UIViewController's wasn't getting hit. The code in viewDidUnload was also unregistering self from other, system notifications as well, as detailed here.

I'm not going to mark this as an accepted answer until I verify that the crashes stop with the new update.

UPDATE: I've verified with Crashlytics that the problem has been fixed!

share|improve this answer
   
Yeah, the golden rule of notification observing: remove observers only for those notifications you've registered for. I've read about it some time ago, but have never met the consequences so clear. Glad you've fixed your issue. – iHunter Jan 8 '12 at 8:36
@AshFurrow remove self from those notifications on viewDidUnload only if you are registering for those in viewDidLoad. – Till Jan 8 '12 at 9:52
@Till the problem is, UIViewController seems to be registering for notifications on initialization that I am unregistering for in viewDidUnload. I've changed my removeObserver: to removeObserver:name:object: so that I'm only unregistering for specific notifications. – Ash Furrow Jan 8 '12 at 15:28
@AshFurrow as you are registering self for this notification/s in the init method, you should remove self from those exact notification in dealloc and not within viewDidUnload. – Till Jan 8 '12 at 16:30
@Till you misunderstand; I'm registering for the notifications in viewDidLoad and unregistering for them in viewDidUnload. However, the issue is that in viewDidUnload, unless I specify exactly which notifications to remove, I may remove notifications set up in UIViewController's init method. – Ash Furrow Jan 8 '12 at 16:56

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.