+4 import objective-c header Johannes Rudolph Oc...">

Objective-C Import

What's the difference between:

#import "foo.h" 

and

 #import <foo.h> 
+4
source share
1 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.

+11
source

All Articles