PDA

View Full Version : Importing in Objective-C


Nick
2004.07.17, 06:13 PM
When importing headers at the top of files in Objective-C (Cocoa) what differentiates the use of <> from ""? I've seen both and am confused why there is (if there is) a difference.

LongJumper
2004.07.17, 06:26 PM
<> searches the designated system path, while "" first searches the directory the file the #include is in then I believe it will search the system path. System path is in your project settings somewhere, and I believe it's /usr/include.

Nick
2004.07.17, 08:13 PM
Thanks for the help.