Apparently, the order of #import statements actually matters.
You want to put the corresponding .h import at the top of your .m files, next you put other files in your project and then finally, you add system headers that use the angle brackets.
Using this ordering ensures that you don't mask dependencies.