Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In the xcode, after you creating a UIViewController subclass, in the viewDidUnload method, there is a comment added by xcode:

- (void)viewDidUnload {
    [super viewDidUnload];
    // Release any retained subviews of the main view.
    // e.g. self.myOutlet = nil;
}

Here, xcode recommends us to use self.myOutlet=nil to release object.

But in xcode4, there is a cool feature: you can just drag a Interface Builder outlet to its owner's header file, then xcode will automatically create the IBOutlet object and relevant release code in viewDidUnload method.

The problem is in above scenario, it generated code is something like this:

- (void)viewDidUnload {
    [super viewDidUnload];
    [self setFoo:nil];
}

I mention that the "self.foo = nil;" is replaced by "[self setFoo:nil];".

Does anybody know the difference? If there is no difference, why xcode4 changes it?

Thanks.

share|improve this question

3 Answers

up vote 2 down vote accepted

In the executable, there is no difference between the two syntaxes. The only technical reason I can think of for Xcode to use the setter method explicitly is for compatibility with pre-Objective-C 2.0 code, which didn't support dot-syntax. I don't know why Xcode would need to support that compatibility; maybe the part of Xcode that generates the set-to-nil expression is older than Objective-C 2.0.

Or maybe the person who wrote that part of Xcode simply doesn't like dot-syntax. When dot-syntax was first introduced, a lot of people didn't like it.

http://weblog.bignerdranch.com/?p=83
http://www.cimgf.com/2008/07/08/a-case-against-dot-syntax/
http://cocoawithlove.com/2008/08/in-defense-of-objective-c-20-properties.html

share|improve this answer
Thanks for your reply. The problem causes my code style ugly. Some lines of codes use self.foo = nil, other IDE generated codes use [self setFoo:nil]; How to solve this problem? – tangqiaoboy Mar 2 '12 at 9:32
You just have to fix them yourself, manually or by writing a script. – rob mayoff Mar 2 '12 at 18:14

Both of those two calls will do the same thing.

self.foo = nil;

is the dot syntax version of:

[self setFoo:nil];

No performance difference, just a matter of preference on how you like to write your code.

share|improve this answer

I think the self.foo can be a setter/getter depending on use while [self setFoo] is an explicit call to the setter.

In normal use, both should be the same.

Blog entry on dot notation in Objective C http://weblog.bignerdranch.com/?p=83

share|improve this answer

Your Answer

 
discard

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

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