I'm quite new to objective-c. I have problems when creating array of objects. In java it is possible to make array of object and can access individual instances directly.
For example,
SomeClass[] instance = new SomeClass[10];
instance[i].var=10;
Is there any way to do like this in objetive-c? Can I access the instance variable in array of object directly using index? An example would be of more help. Thanks in advance