Some methods of my class need to know how many times the class has been loaded. Do I need a Singleton for this, or are there other ways to do this? Are there static variables that I can attach to the class and then just increment them every time a viewDidLoad?
When the application starts, that value is resetted (=0). I'm not such a big singleton-friend, since that's such a big overhead of methods in objective-c ;)