I got the following code line:

mainLayer.shadowColor = CGColorCreate( CGColorSpaceCreateDeviceRGB(), components );

When I run Product->Analyse in xcode it gives me the warning:

Potential leak of an object allocated on line 176

So that means that I do not free my CGColor. Therefore I thought a good solution would be the following:

CGColorRef shadowColor = CGColorCreate( CGColorSpaceCreateDeviceRGB(), components ); 
mainLayer.shadowColor = shadowColor;
CGColorRelease( shadowColor );

But I still get the same leak warning. How do I repair the problem?

link|improve this question

60% accept rate
feedback

2 Answers

up vote 5 down vote accepted

You need also to release colorspace:

CGColorSpaceRef colorspace = CGColorSpaceCreateDeviceRGB();
CGColorRef shadowColor = CGColorCreate( colorspace, components ); 
mainLayer.shadowColor = shadowColor;
CGColorRelease( shadowColor );
CGColorSpaceRelease(colorspace);
link|improve this answer
feedback

Is this:

CGColorSpaceCreateDeviceRGB()

by any change returning an object you're responsible for deallocating? I thought I remembered there being a function like CGColorSpaceRelease().

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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