Skip to main content

All Questions

Tagged with
Filter by
Sorted by
Tagged with
0 votes
0 answers
448 views

Locating NSZombie in code with instruments

I have an error, that appears in 100% of use cases in certain scenario. Current state: Exception breakpoint is enabled. Zombie objects are enabled in run schemes. I use Instruments Zombie tool to ...
ashvardanian's user avatar
6 votes
2 answers
3k views

An Objective-C message was sent to a deallocated object (zombie) at address: 0x75d52a0

I am relatively new to iOS development so appreciate your help in finding out the root cause for the error that I encountered. I tried to debug the error using Instruments (i.e. Allocations-Zombie ...
user1881383's user avatar
0 votes
1 answer
422 views

Early dealloc call over-releasing object iOS

My app is crashing due to an over-released object and I have narrowed it down to the early call of dealloc in a custom class. This causes a crash attributed to an NSMutableArray that is using the ...
Jace's user avatar
  • 145
3 votes
3 answers
4k views

blocks and async callback, dealloc object - need to nil the block

There is a similar question here, which doesn't explain exactly what I want: Objective C Blocks as Async-callbacks & BAD ACCESS I have a view controller, which calls a service with an async ...
bandejapaisa's user avatar
2 votes
3 answers
9k views

-[CALayer release]: message sent to deallocated instance

I'm having a problem with some code in the loadView: method of one of my view controllers. Essentially I have a view which centres itself in a larger view (on an iPad) and has some labels, buttons and ...
Daniel Farrelly's user avatar
0 votes
2 answers
902 views

NSZombieEnabled breaking working code?

I have the following method in UIImageManipulation.m: +(UIImage *)scaleImage:(UIImage *)source toSize:(CGSize)size { UIImage *scaledImage = nil; if (source != nil) { ...
Gordon Fontenot's user avatar