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.
|
|
Issue Description:
One Alternative: Simulate a class variable behavior using Objective-C features
Code sample: file: classA.m
References: |
||
|
|
|
On your .m file, you can declare a variable as static:
Then you can initialize it on your Please not that this is a plain C static variable, not static in the sense Java or C# consider it, but will yield similar results. |
||
|
|
|
|
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). |
||
|
|
|
|
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. |
||
|
|
