iOS 模拟器无法在 Xcode 6.1.1 中运行?

iOS Simulators are not working in Xcode 6.1.1?

我能够在 iPad 和 iphone 中 运行 我的项目,但是当我尝试在 iPad 模拟器中 运行 它时 但后来我得到了这个错误。

ld: building for iOS Simulator, but linking against dylib built for MacOSX file '/Users/apple/Documents/releaseAPICON2015/SenTestingKit.framework/SenTestingKit' for architecture i386
clang: error: linker command failed with exit code 1 (use -v to see invocation)

请检查此 link 以获取屏幕截图

Error

请告诉我如何取回 xcode 6.1.1

中的所有模拟器

您正试图在您的 iOS 项目中 link SenTestingKit.framework。您不能在 iOS 模拟器应用程序中使用 OS X 二进制文件,因为它们不兼容。

在旧版本的 iOS 上,您会遇到运行时错误(不正确的值或崩溃)。在 iOS 8.0 上,这变成了 link 次错误。

您需要为 iOS 构建一个 SenTestingKit.framework 版本。希望这有帮助.. :)