Notice when we improt files in Objective-C

      Notice that for importing class header files that are not frameworks, the header file name is in quotes rather than the angle brackets used for importing frameworks (as was  done in the header file). The difference between quotes and brackets is that quotes instruct the preprocessor to start looking for the file within the same directory as the current implementation file. Since framework files are stored elsewhere, the angle brackets tell the preprocessor to skip the current directory.

你可能感兴趣的:(C++,c,C#,Objective-C)