How to tell Xcode how to include a library specified with angle brackets?

前端 未结 2 1627
小鲜肉
小鲜肉 2021-02-18 14:21

I often see open source code importing third-party libraries in Xcode / Objective-C implementation files like this:

#import          


        
2条回答
  •  南旧
    南旧 (楼主)
    2021-02-18 15:24

    Specify the include path using the compiler flag -I, or the Xcode build settings alias HEADER_SEARCH_PATHS. Of course, you can use build variables when doing so.

提交回复
热议问题