Is it possible in an Objective-C class to store an array of instances of another class as a property?
Simple example: I have a class called "Classroom" and a class called "Students".
@interface Student
@property int m_id;
@end
...
@interface Classroom
@property Student *m_students[20]; // this causes a compilation error: property cannot have an array or function type 'Student *[20]'
@end
How can I do the equivalent of this?