Re: NSMutableString, NSMutableArray, scrambledString
Re: NSMutableString, NSMutableArray, scrambledString
- Subject: Re: NSMutableString, NSMutableArray, scrambledString
- From: Enrique Zamudio <email@hidden>
- Date: Fri, 13 Jul 2001 12:26:44 -0500
- Organization: Nasoft
Easy!!! you can't initialize instance variables in the interface
declaration of a class. It makes no sense, because the interface can be
seen by many other classes, so when should that code be executed? it
would be ambiguous. So you have to initialize your variables in your
-init method or somewhere else.
eZL