+4 import objective-c header Johannes Rudolph Oc...">Geek Answers HandbookObjective-C ImportWhat's the difference between:#import "foo.h" and #import <foo.h> +4import objective-c headerJohannes Rudolph Oct 7 '09 at 20:29source share1 answer#import "foo.h" usually used for the headers of your project.#import <foo.h> are the headers of the frameworks you are referring to.+11Georg SchΓΆlly Oct 7 '09 at 20:33source shareMore articles:SharePoint 64bit or 32bit - sharepointVim: insert after last space? - vimHow to use SetFocus to control a text box? - asp.netWCF Transaction Timeout Testing - c #Is there a breakpoint when a database transaction gets corrupted? - databaseIs it a bad idea to let users add their own stylesheet? - securityManage LDAP groups and their membership in Novell eDirectory using .NET. - .netThree map implementations in javascript. Which one is better? - javascriptphp mysqli WHERE IN (?,?,? ...) - phpNSRunAlertPanel () outside the main thread? - multithreadingAll Articles
What's the difference between:
#import "foo.h"
and
#import <foo.h>
#import "foo.h" usually used for the headers of your project.
#import <foo.h> are the headers of the frameworks you are referring to.