In my .m file for a class named Ad , I have 3 static strings
static NSSTring *AdStateDisabled = @"disable";
static NSSTring *AdStateExpired = @"expired";
static NSSTring *AdStateActive = @"active";
I can simply use these static variables in the current class, but i cannot call them from any other class, is there a way to make these static variables global? So for example in my viewcontroller class i can do something like.
//HomeViewController.m
if ([self.ad.state isEqual:Ad.AdStateDisabled])
{
//do something
}