Re: Passing variables between .m files

2009-09-10 Thread Graham Cox
Hi Aaron, You seem to be conflating several unrelated concepts here. First, a file is not an object or class, and an object or class is not a file. A file is just a container for some text which can be compiled. A file might contain the definitions for several objects, or a single object

Re: Passing variables between .m files

2009-09-10 Thread BareFeet
Hi Aaron, I have been struggling over this one for a while now, and what frustrates me the most is the feeling that it should be relatively simple to do. Let's say I have File1.m and File2.m, and I would like to access a variable in File2.m from File1. My previous programming experience