Following instructions, I've created a bridging header and added to my project. Unfortunately, the following error occurred:
:0: error: could not import Objective-C header '---path--to---header/....h'
In build settings I added header search path string to the location of bridging header, but nothing helped.
Has anyone experienced this problem?
Be careful to add the file to the folder that your error is complaining! I've made the same mistake, if you create the file from Xcode, it will go to the folder: Project->Project->Header.h
And Xcode is looking for Project->Header.h
That means you need to put the file inside your project folder (ProjectName->ProjectNameFolder)!
UPDATED: I'm not sure if I got what you mean, but try this to solve your problem:
If you follow this steps, your header file will be created at the correct location!