My app is crashing with the message:
dyld: Symbol not found: _NSURLAuthenticationMethodClientCertificate
Referenced from: /var/mobile/Applicat
Reorder your frameworks to have Foundation before CFNetwork.
That's a temporary fix to something that is obviously a bug in Xcode 6.
The few times it happened with me a simple Clean (shift + cmd + K) did the trick.
Edited to include two possible steps you need to take:
There seems to be a change in which headers include what in iOS8.0 (the glextensions file, for example, is no longer in the top header). If you explicitly add Foundation framework to your project, it will build fine. Making CFNetwork optional will, of course, lead to failures and is only a solution for the build error and not a solution overall.
I had the same problem using sqlite3 with Xcode 6.3 on a device running iOS 8.1.3 and so using sqlite3 v3.7.13.
The C function sqlite3_errstr() was introduced in sqlite3 v3.7.15.
My code was calling sqlite3_errstr().
The application was crashing on launch.
Setting libsqlite3.dylib as optional (rather than required) did the job.