0

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 ""?.

Sulthan
  • 123,697
  • 21
  • 207
  • 260
showlog
  • 68
  • 7

1 Answers1

-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
  • 2,876
  • 4
  • 34
  • 40