美文网首页
按键直接退出APP

按键直接退出APP

作者: 小小东 | 来源:发表于2015-09-06 15:09 被阅读193次

    直接在方法中写下面的代即可

    exit(0);

    上面方法的缺陷:苹果系统不推荐此方法,因为有home键的存在,有可能在上线的时候出现问题。

    下面的方法abort();网上说是苹果认可的,但是我没找到里面具体应该怎么写,只是在方法里面调用了上面的方法,也达到了退出APP  不知道能不能算正规(自己感觉是在搞笑)

    - (void)ActionButton:(UIButton *)button

    {

    [self performSelector:@selector(exitApplication)];

    abort();

    }

    - (void)exitApplication {

    exit(0);

    }

    相关文章

      网友评论

          本文标题:按键直接退出APP

          本文链接:https://www.haomeiwen.com/subject/wzhrcttx.html