This issues seems to appear in Xcode 7.2 due to search path/include.
Solve this in following way:
-
Select your
[projectName]
in Xcode TARGETS. -
Go to Build Settings tab.
-
Make sure that the filter is set to “All” and not “Basic”.
-
Search “Header Search Paths”
-
Double click and add this path to both “Debug” and “Release”:
$(OBJROOT)/UninstalledProducts/$(PLATFORM_NAME)/include
-
Now clean the Project and restart Xcode.
-
Able to make the Build and Archive.
-
That’s All.