Xcode project/app name with spaces issue - framework not found Xcode project/app name with spaces issue - framework not found xcode xcode

Xcode project/app name with spaces issue - framework not found


Simply enclose your framework path in double quotes(""). For example:

"$(SRCROOT)/my framework/path"

enter image description here


"directory not found for option '-F/..."

Here '-F/..' shows it's a Framework Error. There could be 2 reasons for this.

  1. Missing escape "\" character.

    It seems search paths are broken up on several lines in the Framework Search Path or Library Search Paths. Or having spaces in path. Add the escape "\" character to fix it.

  2. Click on your project (targets)->Click on Build Settings->Under Frameworks Search Paths, delete the paths.


I'm sure this is Xcode bug. Since a lot of other developers have problems with frameworks paths, such as Absolute path issuesI'm sure You will find other issues too in SO.

I have encountered this issues myself too.Best solution for me just commit working project files, and then reset/revert new/wrong changes which done by Xcode.