Search code examples
iphoneobjective-cxcodeios-simulatorios6

still dyld: Library not loaded


I am integrating Facebook in my application. As required frameworks I added to the project. But the app crashes without loading even first screen.

dyld: Library not loaded: /System/Library/Frameworks/AdSupport.framework/AdSupport
  Referenced from: /var/mobile/Applications/8E09C9AA-CA81-4C26-AEED-B2C632B60A54/Gridlocked.app/Gridlocked
  Reason: image not found

I use Xcode 4.5 and my iPad runs iOS 5.1 The app runs fine on the simulator (both 6.0 & 5.1), but when I connect the iPad and change the deployment target to 5.1 (as without this the device is not shown to run), the app crashes.


Solution

  • Found out the solution to the problem. The problem was setting the added frameworks as required instead of optional

    GO TO Project-> Targets-> Build Phases-> Link Binary with Libraries

    There, set the status of added frameworks to Optional

    This solved my problem.