博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

代码关闭程序的几种方法

Posted on 2011-11-21 16:06  星尘的天空  阅读(226)  评论(0编辑  收藏  举报

Linke Address: http://www.cnblogs.com/zhw511006/archive/2011/07/09/2101638.html

有时候需要用代码的方式关闭程序,其实功能就像按了home键。

这两种可以用

 

  1. [self performSelector:@selector(notExistCall)];  
  2. abort(); 
这两种是私有的,不能通过app store.
  1. [[UIApplication sharedApplication] performSelector:@selector(terminateWithSuccess)];   
  2. exit(0);