vote up 0 vote down star

16 Bytes is pretty small, right? None of the UIImages I create in my app are that small, yet the Leaks Instrument is reporting a leaked UIimage of size 16 Bytes... Any clues on what this could be? Incidentally, there was also a leaked CALayer object of 48 bytes...

flag

1 Answer

vote up 1 vote down check

UIImages are just a thin wrapper around CGImageRefs; most likely you have an uninitialized UIImage somewhere (or something similar):

- (void)leakImage
{
    UIImage *leaked = [UIImage alloc];
}
link|flag
Wow, interesting. Thanks. – RexOnRoids Aug 29 at 0:44

Your Answer

Get an OpenID
or

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