Johannes Rudolph
Johannes Rudolph

Reputation: 35761

Objective-C Import

What is the difference between:

#import "foo.h"

and:

#import <foo.h>

Upvotes: 4

Views: 530

Answers (1)

Georg Sch&#246;lly
Georg Sch&#246;lly

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

Related Questions