Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have this code:

[[data objectForKey:[keys objectAtIndex:0]]
    				 sizeWithFont:[UIFont systemFontOfSize:12]  
    				 constrainedToSize:CGSizeMake(276.0, 1000.0)  
    				 lineBreakMode:UILineBreakModeTailTruncation];

data is a NSDictionary.

It is said this code has 16 bytes leak, but I cant find it.

Help

share|improve this question
1  
You need to provide more detail. All you have there is an access to something in a collection class, you need to show how the thing is allocated, what its scope is, etc. Have you tried using the Leaks tool available under Instruments? – Adam Eberbach Nov 1 '09 at 22:27

2 Answers

What type does the NSDictionary return?

[[data objectForKey:[keys objectAtIndex:0]]

Break the statement up to better figure out where the leak may be:

NSString *s = [[data objectForKey:[keys objectAtIndex:0]];
CGSize size = [s sizeWithFont:[UIFont systemFontOfSize:12]
            constrainedToSize:CGSizeMake(276.0, 000.0)
                lineBreakMode:UILineBreakModeTailTruncation];
share|improve this answer

Do you leak only one 16byte block for the entire life of your app? Or are you leaking 16 bytes every time through a loop?

If it is 16 bytes only, I am not sure if I'd worry too much about it. I'm saying that given that some of the caching I have seen done by the OS tends to look like leaking.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.