I\'m adding Rdio to my iOS app and I\'m stuck on this part of the installation:
Add -all_load under Other Linker Flags in the project build info
<
force_load is exactly what you want - it allows you to load only that framework without messing with anything else. The problem is the exact syntax along with a few other unexpected tweaks to your settings.
Force load should be given the path to your object file, not the framework.
-force_load $(SOURCE_ROOT)/AppName/libs/Rdio.framework/Versions/Current/Rdio
Rdio.framework
from the 'Link Binary with Libraries' build phase.