Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save nvkiet/c1c3a6d4bd8acd5b0f5c to your computer and use it in GitHub Desktop.
Save nvkiet/c1c3a6d4bd8acd5b0f5c to your computer and use it in GitHub Desktop.
dyld: Symbol not found: _NSURLAuthenticationMethodClientCertificate when trying to run iOS app
Re-ordering in XCode didn't do the trick; I'm using Cocoapods, which creates a Pods.xcconfig file. This has a OTHER_LDFLAGS line. I put -framework Foundation as the first entry, and that's made my project work.
OTHER_LDFLAGS = -framework Foundation -ObjC …
http://stackoverflow.com/questions/24043532/dyld-symbol-not-found-nsurlauthenticationmethodclientcertificate-when-trying#answer-24288986
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment