Iphone User
Iphone User

Reputation: 1950

link to framework is always required on each launch

I am facing an annoying behavior when linking some external libraries to my framework project.

When linking the library to my project everything works fine, but when i close the project and re-open the Xcode then launching the project and run it, it gave me an error that the library is not linked in my framework and i should add it(it is already shown in framework). When i re-add it, everything will works fine again.

I don't know if that is considered as a bug or not, but every time i open my application in Xcode, i should add about 5 frameworks in order to run my application which annoys me!

why some libraries(not all externals) are keep asking me to link them to framework?? is there a way that those libraries are added once without keeping annoying me?

Thanks for any help.

Upvotes: 0

Views: 98

Answers (1)

rishi
rishi

Reputation: 11839

Correct Header search path of your frameworks. Two ways -

  1. Either put framework in your application base folder.
  2. Or provide framework path in your header search path.

Upvotes: 1

Related Questions