I have an interface definition like this:
@interface MasterPanelsController : UIViewController {
PanelSuperclass *panels[3];
}
I'm trying to programmatically get the count of my panels array, but [panels count] and sizeof(panels) don't work. How can I determine the size of this array?
(Note: PanelSuperclass is a subclass of UIView)