I have an iOS Swift Project on Xcode.
I worked on it for a long time, using external Objective-C libraries for my Swift code without any problems.
Suddenly after Xcode received the update (I think), I try to run my project and apparently try to compile the external Objective-C as Swift, so of course it fails.
I am attaching a screenshot with errors:

And this is my bridge title:
#define degreesToRadian(x) (M_PI * (x) / 180.0) #import <Parse/Parse.h> #import <FBSDKCoreKit/FBSDKCoreKit.h> #import <FBSDKLoginKit/FBSDKLoginKit.h> #import <Bolts/Bolts.h> //#import <Facebook-iOS-SDK/FacebookSDK/FacebookSDK.h> #import <ParseFacebookUtils/PFFacebookUtils.h> #import <Bugsnag.h> #import <M13Checkbox.h> #ifndef VideoCloudBasicPlayer_VideoCloudBasicPlayer_Bridging_Header_h #define VideoCloudBasicPlayer_VideoCloudBasicPlayer_Bridging_Header_h #import "BCOVPlayerSDK.h" #endif
Any ideas?
source share