What is the difference between:
#import "foo.h"
and:
#import <foo.h>
What is the difference between:
#import "foo.h"
and:
#import <foo.h>
#import "foo.h"
is normally used for headers of your project.
#import <foo.h>
are headers of frameworks you link to.