My app is crashing with the message:
dyld: Symbol not found: _NSURLAuthenticationMethodClientCertificate
Referenced from: /var/mobile/Applicat
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 …
(Beware, this file gets re-generated each time you pod update
.)