• 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);

        }

    }

  • 相关阅读:
    SRF 认证
    Python getattr
    jQueryattr()与prop()之间的区别
    鼠标事件(拖拽)
    Python中操作MySQL的模块---pymsql
    C++ 存储类
    C++ 修饰符类型
    C++ 变量作用域
    C++ 变量类型
    C++ 数据类型
  • 原文地址:https://www.cnblogs.com/zxykit/p/5216642.html
Copyright © 2020-2023  润新知