I got some crash reports in crashlytics which I don't understand at all, here's the crash log of the thread that crashed:
I don't find any hints to my code, nor is it something reproducable or only happening on specific devices. According to Crashlytics it's not a problem with RAM or disk space, so I'm really helpless here.
Does anyone have some hints with that stacktrace?
I have some thoughts:
EXC_BAD_ACCESS KERN_INVALID_ADDRESS
. This is a Bad access
error._dealloc
something, according to the stack trace listing a method, [_queueForDealloc:]
. With iOS's ARC (Automatic Resource Counting) system, things in Xcode can't call alloc
or release
because of it allocating memory and releasing it automatically. This technology was released with iOS 5.My guess is, the compiler really doesn't like that [_queueForDealloc:]
method you may have called, or you're trying to dealloc
something that has already been dealloc
'ed. (See the third line: a call of -[_PFArray dealloc]
.)
Either way, this is a bad access error. Check what you're deallocating and whether or not you should be deallocating it.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With