iOS simulator: double click home button does not work sometimes

后端 未结 2 564
滥情空心
滥情空心 2021-02-18 14:59

With the iOS simulator version 10, double clicking the home button to bring up multitasking (running apps) sometimes does not respond. Even hitting (cmd + shift + h)x2 to simula

2条回答
  •  天涯浪人
    2021-02-18 15:46

    I have this problem too when I want to close my app. So, I use command line instead:

    xcrun simctl list | grep Booted
    

    then copy simulator ID, and run this command to close app

    xcrun simctl terminate  
    


    ... or if you have only one simulator running, just type booted:

    xcrun simctl terminate booted 
    

提交回复
热议问题