OSX App crashing on load when ParseOSX framework with Dyld Error OSX App crashing on load when ParseOSX framework with Dyld Error xcode xcode

OSX App crashing on load when ParseOSX framework with Dyld Error


I ran into the same problem with xcode 6.1. Fixed it by adding ParseOSX.framework to "Embedded Binaries" on the general tab of the Targets page.


Two things fixed this for me.

First I needed to add a copy files section to the build phases and copy the ParseOSX.framework into the Frameworks destination.

And second, I needed to add --deep to the "Other Code Signing Flags" in the Code Signing section of Build Settings. It now signs the frameworks being copied it seems.


I was updating an existing parse project to the newest SDK (1.12.0) using Xcode 7.2 and ran into the same problem.

The solution for me was to set Runpath Search Paths to @executable_path/../Frameworks.

enter image description here

I found this by comparing the Starter project from Parse to my project.