I\'m having a really tough time getting XMPPFramework to work. I\'ve followed every direction written on the net, and XCode is not finding any of my XMPPFramework classes.>
Additional information related to the instructions in @Brian's answer.
Addition to Step 3:
If a lib file such as libxml2.dylib is not available in the "Choose frameworks and libraries to add" window, follow these steps to find it:
Add Other...COMMAND+SHIFT+G (Go to folder)/usr/lib and then Enter or click GoOpenAfter Step 4:
Also note that XMPPFramework and its dependencies use ARC.
If your app primarily uses MRR instead of ARC, either convert your app to ARC or perform step 5.
Step 5
Add -fobjc-arc compiler flag to the XMPPFramework files.
In Xcode, for each target that will use XMPPFramework,
Build PhasesCompile SourcesEnter to open the edit window for compilers flags-fobjc-arcEnter again to save the change.The Compile Sources list is unsorted, so it is helpful to use the search field to filter the list on XMPP and then on XEP. That finds most of the files, but there are still some that have to be picked out from the full list of files.