我开发了一个与Facebook集成的iOS应用程序。我需要为Facebook发送iOS模拟器版本,以查看Facebook集成如何在我的应用程序上运行。
该链接提供有关如何创建iOS模拟器版本的说明。 https://developers.facebook.com/docs/ios/creating-ios-simulator-build-for-review/
所述链接提供了创建iOS模拟器构建的代码
xcodebuild -arch i386 -sdk iphonesimulator{version}
我想要做的是运行应用程序iOS模拟器构建。我想测试iOS模拟器的构建是否有效。
我搜索并发现了这个:
Launch an iOS app in the simulator without XCode
要求我使用此代码来运行iOS模拟器构建。
/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Applications/iPhone\ Simulator.app/Contents/MacOS/iPhone\ Simulator -SimulateApplication ${PROJECT}/build/Debug-iphonesimulator/<yourapp>.app/<yourapp>
是的,iOS模拟器会运行,但它不会启动我的应用程序。
我应该如何在模拟器上运行iOS模拟器?需要帮助。谢谢!
加法说明: 我正在使用Xcode 5.1.1
答案 0 :(得分:7)
我使用ios-sim取得了成功。然后使用ios-sim launch <yourproject>.app
答案 1 :(得分:2)
使用simctl:
更新Xcode 6.x及更高版本的说明xcrun simctl install booted /path/to/your/built/simulator.app
xcrun simctl launch booted com.your.app.identifier