Skip navigation.
 
mlRe: When are bound variables initialized?
FROM : Scott Anguish
DATE : Wed Apr 13 23:38:37 2005

just to poke my nose in here..

you'll want to set these values using a KVC compliant means.. so 
accessors should be used..


On Apr 13, 2005, at 4:21 PM, Michael Lutz wrote:

>> I suggest you set it in your -init method instead. And use
>>
>> awakeFromNib = [[NSMutableString alloc] initWithString:@"Distance"];
>>
>> And then in your -dealloc you need to add
>>
>> [awakeFromNib release];
>>
>> Don't forget to call [super dealloc] at the end of your -dealloc 
>> method.

>


--
"William Cheeseman ... is said not to be a doofus in real life." - 
Roger Ebert, Chicago Sun-Times Online

Scott Anguish
<email_removed>

Related mailsAuthorDate
mlWhen are bound variables initialized? Michael Lutz Apr 12, 20:34
mlRe: When are bound variables initialized? Kevin Ballard Apr 12, 21:34
mlRe: When are bound variables initialized? Michael Lutz Apr 12, 22:05
mlRe: When are bound variables initialized? Kevin Ballard Apr 12, 22:11
mlRe: When are bound variables initialized? Michael Lutz Apr 13, 22:21
mlRe: When are bound variables initialized? Scott Anguish Apr 13, 23:38