I actually get confused some times about why we find only ” #import ” in all the header files that we create? And again why are we provided only 3 frameworks(Foundation, UIKit,CoreGraphics) when we create any iPhone Application?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
At least when starting a new project from xcode templates, the PreCompiled Headers (.pch) contains
so actually, no imports of those two would be required anywhere else.
I tend to drop
from all my source files and just keep the implicit one via the .pch file.