关闭程序

-(void)close
{
    [UIView animateWithDuration:1.0f animations:^{
        self.view. window.alpha = 0;
        
        self.view.window.frame = CGRectMake( self.view.window.bounds.size.width/2,self.view.window.bounds.size.height, 0, 0);
    } completion:^(BOOL finished) {
        exit(0);
    }];
}

posted @ 2015-06-19 15:10  谢小锋  阅读(166)  评论(0编辑  收藏  举报