I have a class Film, each of which stores a unique ID. In C#, Java etc I can define a static int currentID and each time i set the ID i can increase the currentID and the change occurs at the class level not object level. Can this be done in Objective C? I've found it very hard to find an answer for this.
|
feedback
|
|
Issue Description:
One Alternative: Simulate a class variable behavior using Objective-C features
Code sample: file: classA.m
References: | |||||||||||||||||||||
feedback
|
|
In your .m file, declare a file global variable:
then in your init routine, refernce that:
or if it needs to change at some other time (eg in your openConnection method), then increment it there. Remember it is not thread safe as is, you'll need to do syncronization (or better yet, use an atomic add) if there may be any threading issues. | |||
|
feedback
|
|
As pgb said, there are no "class variables," only "instance variables." The objective-c way of doing class variables is a static global variable inside the .m file of the class. The "static" ensures that the variable can not be used outside of that file (i.e. it can't be extern). | |||
|
feedback
|
|
If you really really don't want to declare a global variable, there another option, maybe not very orthodox :-), but works... You can declare a "get&set" method like this, with an static variable inside:
So, if you need to get the value, just call:
And then, when you want to set it:
In the case you want to be able to set this pseudo-static-var to nil, you can declare
And two handy methods:
Hope it helps! Good luck. | ||||
feedback
|
|
On your .m file, you can declare a variable as static:
Then you can initialize it on your Please note that this is a plain C static variable and is not static in the sense Java or C# consider it, but will yield similar results. | ||||
|
feedback
|
|
Here would be an option:
Note that this method will be the only method to access id, so you will have to update it somehow in this code. | ||||
|
feedback
|