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
  • 118,286
  • 20
  • 194
  • 245
showlog
  • 58
  • 6

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,484
  • 3
  • 31
  • 39