I'm wondering what decides whether you're allowed to use < > or " " when you're importing files in objective c. So far my observation has been that you use " " for the files in your project that you've got the implementation source to, and < > when you're referencing a library or framework. But how exactly does that work? What would I have to do to get my own classes to use < >? Because right now xCode will not allow me to do that for my own headers.
Also, by looking in some frameworks headers, I see that the headers reference eachother with <frameworkname/file.h>. How does that work? It looks alot like packages in Java, but as far as I know, there is no such thing as a package in objective c, is there? How would you go on about making your own framework?