Can't I leave out #import "foo.h" in .m file if it's already in the prefix header?

The product still builds successfully when I leave it out. But, I've noticed that the Xcode templates keep them in. Why?

Is the answer the same for #include?

link|improve this question

63% accept rate
1  
possible duplicate of Why do Xcode templates have #imports that duplicate Prefix.pch? – Yuji Aug 11 '11 at 13:35
feedback

1 Answer

up vote 1 down vote accepted

I don't know why it does this, but it doesn't hurt because #import protects from double #include by checking if something is already #import-ed or #include-d, so no, the same scenario wouldn't work with #include.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.