Linking iPhone with Stomp.framework. Anyone have any experience?

Failed to bind Stomp.framework with iPhone SDK app.

http://code.google.com/p/stompframework/

I follow the instructions by adding them to the project, adding a build step for copying the files and including it via #import.

I keep getting "image not found".

Does anyone try this and / or have a clear idea of ​​why?

+1


source to share


3 answers


The iPhone SDK does not support embedding frameworks into applications. I believe he supports the Dealibs, although I'm not sure about that. However, the safest thing to do would be to take the source of this structure and compile it directly into your application.



0


source


This could be better:

http://github.com/juretta/objc-stomp



It was pretty easy for me to get there.

+1


source


Make sure any folder contains the .framework set in the Path Path Settings for your target or project.

There is more you need to do if you want to embed the framework in your application, but this is another question.

edit: completely ignored the iPhone requirement there, you will have to compile the frame as a static library and link to it.

0


source







All Articles