When you start ViewController , the variable of another class is initialized as an array:
@implementation ViewController { MYClass *_class[4][4]; } And it turns out that the _class variable stores an array of MYClass objects and at the same time they can be accessed as _class[2][2].value where value is a variable of the class MYClass .
Everything works fine, but I need to get access to this _class from another class - is it possible to do this?