• 退出登录


    - (void)exitApplication {
       
        [UIView beginAnimations:@"exitApplication" context:nil];
       
        [UIView setAnimationDuration:0.5];
       
        [UIView setAnimationDelegate:self];
       
        // [UIView setAnimationTransition:UIViewAnimationCurveEaseOut forView:self.view.window cache:NO];
        AppDelegate *app = [UIApplication sharedApplication].delegate;
        UIWindow *window = app.window;
       // [UIView setAnimationTransition:UIViewAnimationCurveEaseIn forView:window cache:NO];
    //   
    //    [UIView setAnimationDidStopSelector:@selector(animationFinished:finished:context:)];
    //   
    //    //self.view.window.bounds = CGRectMake(0, 0, 0, 0);
    //   
    //    window.bounds = CGRectMake(0, 0, 0, 0);
    //   
    //    [UIView commitAnimations];
       
        [UIView animateWithDuration:1.0f animations:^{
            window.alpha = 0;
            window.frame = CGRectMake(0, window.bounds.size.width, 100, 0);
        } completion:^(BOOL finished) {
            exit(0);
        }];
        //exit(0);
    //
    }



    - (void)animationFinished:(NSString *)animationID finished:(NSNumber *)finished context:(void *)context {
       
        if ([animationID compare:@"exitApplication"] == 0) {
           
            exit(0);
           
        }
       
    }
    一天一章
  • 相关阅读:
    Redis学习-开始
    MongoDb学习1
    Git删除tag
    简单实现Windows服务 TopShelf
    autofac 注入普通服务和WCF服务
    MVC过滤器之 OnActionExcuted
    jquery的$.extend()、$.fn和$.fn.extend()
    quartz_jobs.xml标准配置
    常用工具类11-上传类
    常用工具类10-上传水印类
  • 原文地址:https://www.cnblogs.com/hangman/p/5406522.html
Copyright © 2020-2023  润新知