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
  • 128,090
  • 22
  • 218
  • 270
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
  • 3,424
  • 4
  • 39
  • 45