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

        }

    }

  • 相关阅读:
    wed
    郁闷的星期三
    Mon
    烟斗信息
    10.3
    德国装甲兵之歌
    危急!开发进入瓶颈阶段
    血糯米粥
    上海:烟斗
    如果你的博客被转载?
  • 原文地址:https://www.cnblogs.com/zxykit/p/5216642.html
Copyright © 2011-2022 走看看