Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
327 views
in Technique[技术] by (71.8m points)

macos - Include Headers from added frameworks on Xcode

I want to work with some frameworks like glew and cg so i manually added

the needed frameworks to my project by right clicking the project -> Add files to ...

and choosing the correct framework. The problem is, when i try to include the header files,

Xcode cant find any of them. I hope this picture will help to understand:

enter image description here

And:

enter image description here

The error given is for the glew framework, but it also happens on Cg.

As you can see on the left, The needed frameworks were added.

Any idea on how i can include these headers?

After trying to add the header files manually i got an architecture error:

enter image description here

I dont know if this is how it should look like. Thanks!

question from:https://stackoverflow.com/questions/15536379/include-headers-from-added-frameworks-on-xcode

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

Before starting, remove the framework and all files you have added while trying to make it work.

Then, you have to add the frameworks in the Build Phases of your target. Then go into Link Binary With Libraries and select your framework from there.

This should do it. Your headers should be available as auto-completion after each #import directive. If it does not work (it sometimes happens), there are additional steps I can provide to you.

Additional steps:

Go to your project settings, in the build settings:

  • Complete the Framework Search Paths with the path of your framework
  • Do the same with User Header Search Path

Then, it should work. If it does not, you will need to add the full path of your header in the #import directive. Example:

#import "/path/to/my/header.h"


Apple's documentation available here states:

  1. In the project navigator, select your project
  2. Select your target
  3. Select the 'Build Phases' tab
  4. Open 'Link Binaries With Libraries' expander
  5. Click the '+' button
  6. Select your framework
  7. (optional) Drag and drop the added framework to the 'Frameworks' group

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...