Re: Static variable in Obj-C way?
Re: Static variable in Obj-C way?
- Subject: Re: Static variable in Obj-C way?
- From: Enrique Zamudio <email@hidden>
- Date: Mon, 11 Jun 2001 14:29:24 -0500
You can write a class that has the static variables that you need
implemented as instance variables, and write a class method to return
a shared instance, and then you can read/write to the ivars using
accessor methods.
eZL