show/hide this revision's text 2 fixed a typo (double ==)

Nope, the second example is not a memory leak. In fact, that's how I deal with retain properties in my dealloc method. It's just a lot cleaner.

The only thing you have to be careful about is making sure not to write

self.foo = = [[NSObject alloc] init];

or else you'll double-retain the object and end up with a memory leak.

show/hide this revision's text 1

Nope, the second example is not a memory leak. In fact, that's how I deal with retain properties in my dealloc method. It's just a lot cleaner.

The only thing you have to be careful about is making sure not to write

self.foo == [[NSObject alloc] init];

or else you'll double-retain the object and end up with a memory leak.