I have a custom NSObject class, with my array in for my data which I want to use etc. But how can I alloc and init this class object, and use it everywhere without always using: CustomClass class = [[CustomClass alloc] init]; because this makes an object every time from my class, so the data is totally off.
I am always getting things about how to alloc/init something but nothing about on how to handle a class that says in the memory and you can use each time without making a new one trough all your other classes.