Is it possible to directly access an object variable with an array of objects like so..
NSArray *myObjectsInArray = [NSArray arrayWithObjects:(id) myClass,myOtherClass, nil];
NSLog(@"%d",[myObjectsInArray[0] returnSize]); //works perfect
NSLog(@"%d",[myObjectsInArray[0].size]); // error
I'm not sure if it's a syntax problem or if it cannot be accessed without a method. thanks for any help.