I saw some import <...>
code in our project, which pod is imported by cocoapods, when <...>
is a system path to search, usually used as import <UIKit.h>
. Why the third lib from pod still could use import <...>
rather than import ""
?.
Asked
Active
Viewed 362 times
0
1 Answers
-1
You should generally not use #import <foo>
and for pods you can use @import Pod;
.
I collected the most current way of importing things in a mixed project here: Current way of importing in a mixed Objective-C / Swift project

Alper
- 3,424
- 4
- 39
- 45