Objective-C Import

header, import, objective-c

Solution

`#import "foo.h"` is normally used for headers of your project.

`#import <foo.h>` are headers of frameworks you link to.

Problem

What is the difference between: ``` #import "foo.h" ``` and: ``` #import <foo.h> ```

Original source