码迷,mamicode.com
首页 > 其他好文 > 详细

模拟按Home键退出应用的方法

时间:2017-03-21 10:12:37      阅读:132      评论:0      收藏:0      [点我收藏+]

标签:animation   gre   har   idt   on()   main   nbsp   pre   应用   

 

func exitApplication() {
        let app = UIApplication.sharedApplication().delegate as! AppDelegate
        let window = app.window
        dispatch_async(dispatch_get_main_queue(), {
            UIView.animateWithDuration(0.5, animations: {
                window!.alpha = 0
                window?.frame = CGRectMake((window?.bounds.size.width)!/2.0, (window?.bounds.size.height)!/2.0, 0, 0)
            }) { (finish) in
                exit(0)
            }
        })
    }

  

模拟按Home键退出应用的方法

标签:animation   gre   har   idt   on()   main   nbsp   pre   应用   

原文地址:http://www.cnblogs.com/Walking-Jin/p/6592887.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!