美文网首页
iOS通过代码杀死结束应用程序

iOS通过代码杀死结束应用程序

作者: 北漂老张 | 来源:发表于2019-07-19 18:55 被阅读0次

    exit(1)、abort()、assert(0);

    abort: 这是默认的程序结束函数,这种方式可能会或可能不会以刷新与关闭打开的文件或删除临时文件,这与你的设计有关.                          

     exit: 附加了关闭打开文件与返回状态码给执行环境,并调用你用atexit注册的返回函数                                                                                

    assert(1) 为oc中的宏,只在debug模式下有用,当条件成立时,程序不会终止掉;当条件不成立时,程序终止

    警告:不要使用exit函数,调用exit会让用户感觉程序崩溃了,不会有按Home键返回时的平滑过渡和动画效果;另外,使用exit可能会丢失数据,因为调用exit并不会调用-applicationWillTerminate:方法和UIApplicationDelegate方法

    如果在开发或者测试中确实需要强行终止程序时,推荐使用abort 函数和assert宏;

    exit 方法

    - (void)exitApplication{

    AppDelegate *app = [UIApplication sharedApplication].delegate;

    UIWindow*window = app.window;

    //动画[UIView animateWithDuration:1.0f animations:^{

    window.alpha = 0;

    window.frame = CGRectMake(0, window.bounds.size.width, 0, 0);

    }completion:^(BOOLfinished) {

    exit(0);

    }];

    //exit(0);

    }

    abort 方法

    - (void)exitApplication{

    #pragma clang diagnostic push

    #pragma clang diagnostic ignored "-Wundeclared-selector"

    //运行一个不存在的方法,退出界面更加圆滑

    [self performSelector:@selector(notExistCall)];

    abort();

    #pragma clang diagnostic pop

    }

    原文地址

    相关文章

      网友评论

          本文标题:iOS通过代码杀死结束应用程序

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