I am writing an app and wondering if it is possible to reference a .m class the same way you would a .h class. (i.e. #import "class.h"). I have a very long code for a page and want to clean it up a bit for editing purposes. Organising it would help me a lot. Would it be possible to make another class for some methods that go together, then import it. (i.e. I have a bounce method, would it be possible to write out the bounce method in another class, then import the .m file, then say still say [self bounce]; in my if statements, or would the text for the bounce method have to be in the same document?
Thanks. -Shen Hutah