I'm looking for some help with XCode 8 Beta 3.
I have an existing *-Bridging-Header.h in my OS X project with a single import statement. The file currently references a single .h file correctly (the app builds and runs in both Xocde 7 and Xcode 8). The existing project was initially migrated from XCode 7 to XCode 8. After migrating the project to XCode 8, and Swift 3, I updated the Bridging-Header.h file with an additional .h file (I also added the associated .h and .m files to the project), and the app will build successfully (just updating the Bridging-Header file and the class defined in the new .h isn't referenced in any of the Swift code). If I use the new class defined in the in the new .h file in the existing Objective-C file, the app builds and runs. However, I get a compile error (unresolved identifier) as soon I as try to use the new class in a Swift class.
I've also done the exact same process (adding a new .h and .m files) to the the project, and updating the Bridging-Header.h in XCode 7, and I am able to then reference the class defined in the new .h file in my Swift class (the app builds and runs).
There seems to be an issue with XCode 8 Beta and updating the Bridging-Header file.
Any suggestions on how to fix the problem?