A solution to “Symbol not found: _objc_readClassPair”

I’m using [Greenhouse CI](greenhouseci.com), they’ve got test machines running under OS X Mavericks. My iOS project was failing during attempt to run tests. Some googling brought to me several similar OS X issues mentioning 10.10 test deployment target being a culprit, and this issue gets fixed by setting target to 10.9

It appeared that the same solution applies to iOS projects - you need to set OS X Deployment Target to 10.9 for your iOS tests, and everything starts to work.

 
28
Kudos
 
28
Kudos

Now read this

Write yourself KVO in Swift

KVO is a major part of Objective-C dynamic nature. Having virtually every property or ivar observable by its key path opens doors to simple bindings or advanced technologies like ReactiveCocoa. But what about Swift? It’s static nature... Continue →