In one classes .h i have
NSMutableArray *rountines;
and in another classes .m i want to do something like this
[routines addOject:@"Hello];
the other class is an ModalViewController type set up.
So, in essence i'd like the .m file of the MVC to be able to read, and edit and do other things to the ivars i declare in the header.
Cheers,
Sam
edit
Another example, which is similar to what im trying to achieve is like an edit screen.