umbrella header for module 'myFramework' does not include header 'otherFramework.h'

后端 未结 12 1523
渐次进展
渐次进展 2021-01-31 07:19

My Swift / iOS9 framework \'viewer_protocol\' uses another and external Objective-C framework (CocoaAsyncSocket). I\'m using Carthage to build CocoaAsyncSocket. So far everythin

12条回答
  •  眼角桃花
    2021-01-31 07:58

    Take a look at this post:

    @import vs #import - iOS 7

    It goes over the concepts of the new module importing. I had my own custom framework and after adopting the new method to import objective-c framework

    old: #import

    new: @import MyFramework;

    it took care of the warning/

提交回复
热议问题