Tagged Questions
3
votes
1answer
118 views
NSCFString leaking when handling key events
I am trying to capture key presses with this code. My problem is that Instruments throws a message about a leak.
I am working without Garbage Collection.
-(void)keyDown:(NSEvent *)theEvent
{
if ...
0
votes
3answers
447 views
How does NSViewController avoid bindings memory leak? [have sample app]
I'm trying to implement my own version of NSViewController (for backwards compatibility), and I've hit a problem with bindings: Since bindings retain their target, I have a retain circle whenever I ...
0
votes
2answers
479 views
Huge memory leak in NSBitmapImageRep
I have a method that analyzes pixel data inside an NSBitmapImageRep that is built from a CGImageRef. Here is the relevant code:
CGImageRef ref;
// omitted code for initializing ref
NSBitmapImageRep ...