Hi,
I've found nothing online but file scope globals, but I'm asking anyhow just in case. Is there a way to have variables for class methods that will live beyond the scope of a call ? That is basically, a class variable instead of an instance variable so that I can set something with a call to a + method and read it back with a 2nd call to a 2nd + method ?
Right now, it works great with file scope globals, but somehow, that bothers my aesthetic senses.
I've found nothing online but file scope globals, but I'm asking anyhow just in case. Is there a way to have variables for class methods that will live beyond the scope of a call ? That is basically, a class variable instead of an instance variable so that I can set something with a call to a + method and read it back with a 2nd call to a 2nd + method ?
Right now, it works great with file scope globals, but somehow, that bothers my aesthetic senses.