up vote 0 down vote favorite
share [g+] share [fb]
> .h file:
NSString *myString;
@property (nonatomic, retain) NSString *myString;

> .m file:
self.myString = [[NSString alloc] init];

If i'm not wrong i will end up with an NSString instance with retain count of +2. Right?

I'm curious because Apple's example for Location uses "self." for initialization. Why? I checked and it does show retain count to be +2.

link|improve this question

This question is unclear, and the title isn't a question. – Gerrie Schenck Jan 28 '09 at 7:24
The question is perfectly clear. – Peter Hosey Jan 28 '09 at 7:34
Probably because someone else edited it. – Marc Novakowski Jan 28 '09 at 7:42
No, it hasn't been edited, and even the title hadn't been edited yet. (Look at time stamps: Edited 24 mins ago; my comment was at 30 mins ago.) – Peter Hosey Jan 28 '09 at 8:05
someone did changed the title. – Mustafa Jan 29 '09 at 14:24
show 1 more comment
feedback

5 Answers

up vote 7 down vote accepted

To answer your first question:

Yes, the retain count would be two.


To answer your second question:

The reason for using:

self.myString = x;

which is equivalent to:

[self setMyString:x];

is so that all of the property handling code is properly executed. This includes KVO notifications, and the code that automatically retains x as it is passed in.

If you were to simply set:

myString = x;

in the .m file, you would bypass all of that hidden property setting code, and simply set the myString member variable to a pointer to x.

link|improve this answer
feedback

Mustafa: Yes, you're correct. (The property should be declared as copy, not retain, but that's another matter.)

link|improve this answer
feedback

In your Modification 1, you're setting your instance variable directly to an autoreleased object. This means that at the end of the event loop your locationManager will be released and in this case, you'll then have a reference to a now unused block of memory.

Your Modification 2 looks correct to me, as does the sample code you've started from.

link|improve this answer
feedback

Sorry for being indirect, i actually want to know why LocateMe application (refer to Apple's sample code) is initializing the location manager like this. If i try to correct it, the delegate methods DON'T get called. Here's the modifications i try to make:

Actual Code:

- (id) init {
self = [super init];
if (self != nil) {
	self.locationManager = [[[CLLocationManager alloc] init] autorelease];
	self.locationManager.delegate = self; // Tells the location manager to send updates to this object
}
return self;
}

Modification 1:

- (id) init {
self = [super init];
if (self != nil) {
	locationManager = [[[CLLocationManager alloc] init] autorelease];
	self.locationManager.delegate = self; // Tells the location manager to send updates to this object
}
return self;

}

Modification 2:

- (id) init {
self = [super init];
if (self != nil) {
        CLLocationManager *myLM = [[CLLocationManager alloc] init];
        self.locationManager = myLM;
        self.locationManager.delegate = self; // Tells the location manager to send updates to this object
        [myLM release];
}
return self;
}
link|improve this answer
you should edit your actual question to add this information instead of posting it as an answer. – Ashley Clark Jan 29 '09 at 5:08
feedback

Since locationManager is an object declared in my class interface, i don't think autorelease will have an affect on it soon after the method is completly done, or am i wrong? Plus, "Modification 2" is logically correct for all other objects but if i use this implementation the Location Manager's delagete methods are not properly captured. Thanks.

link|improve this answer
The autorelease pool is external to your objects. Any object that is placed on it will have a release message sent to it at some undeterminable point in the future. It is very likely that it would be released immediately after your method finishes. – Ashley Clark Jan 29 '09 at 13:52
I'm not an expert, but since the object is an autoreleased object, i believe it will be released when the pool is released. iPhone does not support garbage collection, and NSAutoreleasePool does not release objects in the similar fashion (like garbage collector). Correct me if i'm wrong. – Mustafa Jan 29 '09 at 14:05
You are correct that iPhone doesn't support garbage collection and that an NSAutoreleasePool doesn't release in the same fashion as GC would. But you can't reliably know when an NSAutoreleasePool will be drained. At a minimum it happens at the end of the event loop, but it can happen sooner too. – Ashley Clark Jan 29 '09 at 23:01
feedback

Your Answer

 
or
required, but never shown

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