zoukankan      html  css  js  c++  java
  • iOS通过代码关闭程序

    //-------------------------------- 退出程序 -----------------------------------------//

    - (void)exitApplication {

        [UIView beginAnimations:@"exitApplication" context:nil];

        [UIView setAnimationDuration:0.5];

        [UIView setAnimationDelegate:self];

        // [UIView setAnimationTransition:UIViewAnimationCurveEaseOut forView:self.view.window cache:NO];

        [UIView setAnimationTransition:UIViewAnimationCurveEaseOutforView:self.window cache:NO];

        [UIViewsetAnimationDidStopSelector:@selector(animationFinished:finished:context:)];

        //self.view.window.bounds = CGRectMake(0, 0, 0, 0);

        self.window.bounds = CGRectMake(0, 0, 0, 0);

        [UIView commitAnimations];

    }

    - (void)animationFinished:(NSString *)animationID finished:(NSNumber *)finished context:(void *)context {

        if ([animationID compare:@"exitApplication"] == 0) {

            exit(0);

        }

    }

  • 相关阅读:
    su和sudo命令详解
    JS线程Web worker
    Navicat 批处理 自动备份数据库
    MySql【Error笔记】
    vue入门
    动态库
    环境变量
    cmake_learn
    自动编译
    网络编程
  • 原文地址:https://www.cnblogs.com/zxykit/p/5216642.html
Copyright © 2011-2022 走看看