Run .app file in iOS 8 simulator

后端 未结 4 1590
半阙折子戏
半阙折子戏 2021-02-06 01:21

I have a .app file shared from a developer which i would like to run in iOS 8 simulator. I have seen similar questions which has solutions for older versions of iOS which is no

4条回答
  •  不要未来只要你来
    2021-02-06 02:04

    Boot the simulator you want to install it to in the iOS Simulator and then do the following:

    xcrun simctl install booted /path/to/Your.app
    xcrun simctl launch booted com.yourcompany.yourapp
    

    The "booted" token was not supported on older versions of simctl in Xcode 6.0. If you get an error, please use the full device UDID instead of "booted". You can determine the UDID by running xcrun simctl list

提交回复
热议问题