The narc tag has no wiki summary.
3
votes
2answers
440 views
Beyond NARC: When to retain, when to assign, when to copy
I finally understand whether I must release an object, and how to keep my retain counts as low as possible in a trivial application (by knowing whether the object comes back with an extra 'retain' ...
3
votes
3answers
892 views
Do you need to release parameters of methods at the end of them in Objective-C?
If I have a parameter passed to a method, do I need to release the parameter at the end of the method?
1
vote
1answer
114 views
Objective C memory leaking
I'm creating one Cocoa application for myself and I found a problem. I have two NSTextFields and they're connected to each other as nextKeyViews. When I run this app with memory leaks detection tool ...
0
votes
1answer
331 views
Why release the NSURLConnection instance in this statement?
I read this in a book.
-(IBAction) updateTweets
{
tweetsView.text = @"";
[tweetsData release];
tweetsData = [[NSMutableData alloc] init];
NSURL *url = [NSURL ...