I'm a newbie coder, re-using an app design originally coded in ObjC. The app is camera-based and compiles and runs fine in XCode 9.2 running an image recognition service against a 3rd party's cloud servers.
I converted the app using Swiftify from ObjC to Swift and on attempting to build it now throws a Swift Compiler error and states that the 3rd party framework isn't there (specifically, Cannot import framework after converting project from ObjC to Swift - 'No such module XXXXSDK'.
I have checked the path to the framework is correct and it is located and described correctly.
- Is this error due to the location of the framework, or could it be the format of the framework as well?
- Any tips on how I identify the cause and resolve it? (rebuilding the framework is not an option for me as it is provided by a 3rd party)