Reputation: 35761
What is the difference between:
#import "foo.h"
and:
#import <foo.h>
Upvotes: 4
Views: 530
Reputation: 126175
#import "foo.h"
is normally used for headers of your project.
#import <foo.h>
are headers of frameworks you link to.
Upvotes: 11