Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Xcode doesn't see the file

I have this file structure:

enter image description here

But Xcode doesn't see file for :#import "VKSdk.h" , because it's in another project, what do I need to do:

like image 823
Paul T. Avatar asked Jun 21 '26 00:06

Paul T.


2 Answers

Perhaps consider looking into how to work with workspaces in Xcode. It offers great features when working with multiple interconnected projects.

Check this out https://developer.apple.com/library/ios/featuredarticles/XcodeConcepts/Concept-Workspace.html

like image 115
nstein Avatar answered Jun 23 '26 13:06

nstein


VK guid said to add only sdk.xcodeproj file, so it didn't see all the files in this added project, but when I tried to cope these files into the project, it failed to launch.

I added $(PROJECT_DIR)/DatingService/3d\ Party/VKAPI/sdk into Header Search Paths of Build Settings and now it works.

like image 35
Paul T. Avatar answered Jun 23 '26 13:06

Paul T.