My Swift / iOS9 framework \'viewer_protocol\' uses another and external Objective-C framework (CocoaAsyncSocket). I\'m using Carthage to build CocoaAsyncSocket. So far everythin
In my case (Obj-c framework):
Umbrella header for module 'opus' does not include header 'opus_multistream.h'
I needed to change:
@import opus.opus_defines;
into
@import opus;
(I don't have in #import "....h" or #import <....h> for frameworks)
#import "....h"
#import <....h>