Okay, I really use autorelease/asign lots but I got a problem right now that I don't get. It's probably quite obvious why it isn't working but I'd really like you to explain it to me.

So I've got a UIViewController that I initialize like that:

controller = [[[LBLogInViewController alloc] initWithNibName:@"LBLogInViewController" bundle:nil] autorelease];

Afterwards, I set it a property (nonatomic, assign) :

controller.settingsViewController = self;

Why does that property not last? The value I set is the superview's controller so it won't be released. It obviously works with (nonatomic, retain) but I'd like to know why assign doesn't work here.

link|improve this question

61% accept rate
Are you doing controller.settingsViewController = self in the same method as the alloc? – Jim Rhodes Nov 7 '11 at 2:07
Are you using "controller =" or "self.controller ="? How is controller declared in your header file? – Jim Rhodes Nov 7 '11 at 2:15
Yep, right after the initialization. – Larcus94 Nov 7 '11 at 2:18
After the controller is initialized, I set it as a property "self.contentViewController = controller", which is nonatomic, assign. – Larcus94 Nov 7 '11 at 2:20
feedback

2 Answers

If controller is declared as (nonatomic, retain) and you use "controller =" instead of "self.controller =", you will not be incrementing the retain count because you are bypassing the setter and going straight to the instance variable.

link|improve this answer
didn't see my comment? I initialize it first and set the property using the setter. – Larcus94 Nov 7 '11 at 3:19
can you post the header files showing how controller and settingsViewController are declared? – Jim Rhodes Nov 7 '11 at 3:27
feedback

Check that your @synthesize, @property and settingsViewController ivar has no spelling mistakes (exactly the sames).

link|improve this answer
Nope, it doesn't get dealloced. – Larcus94 Nov 7 '11 at 2:20
@Larcus94 : see my edit. – Oliver Nov 7 '11 at 7:43
feedback

Your Answer

 
or
required, but never shown

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