What's a reliable way to make an iOS app crash?

后端 未结 18 1761
無奈伤痛
無奈伤痛 2020-12-12 11:47

I want to test my app\'s crash reporting out in the field by deliberately having it crash when the user performs a particular action that a real user is unlikely to do accid

18条回答
  •  感情败类
    2020-12-12 12:21

    I would just kill the process normally:

    kill(getpid(), SIGKILL);
    

    So if you install a handler with signal you can also handle the crash, finishing to write opened files and these things.

提交回复
热议问题