I am creating an int global variable in an iPhone application, but it gives an error.
I declare this way:
AppDelegate.h
int maxglobal;
When I assign this to other values, they say that the object cannot set the property in another class.
source
share