博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
iOS 通过代码关闭应用程序
阅读量:6038 次
发布时间:2019-06-20

本文共 899 字,大约阅读时间需要 2 分钟。

//-------------------------------- 退出程序 -----------------------------------------//- (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:UIViewAnimationCurveEaseOut forView:self.window cache:NO];    [UIView setAnimationDidStopSelector:@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);    }}

  

转载于:https://www.cnblogs.com/wanyakun/p/3492675.html

你可能感兴趣的文章
.vdat文件怎么打开
查看>>
合并多个cv::Mat类型,即合并多个图片的接口
查看>>
经验点滴
查看>>
甘肃高分残疾考生请求带母上学(转载)
查看>>
HT for Web可视化QuadTree四叉树碰撞检测
查看>>
http之get与post
查看>>
max_element( )
查看>>
CSS Grid 布局
查看>>
接口的幂等性
查看>>
java中的类
查看>>
黑马程序员—03-数据类型、常量、变量
查看>>
android 自定义文字跑马灯 支持拖拽,按住停止滚动,自定义速度
查看>>
SpringMVC完成文件上传的基本步骤
查看>>
实例168 使用指针输出数组元素
查看>>
bind 与unbind
查看>>
CSS: Flexbox
查看>>
Python学习
查看>>
Java并发_volatile实现可见性但不保证原子性
查看>>
百度地图添加带数字标注
查看>>
【luogu 1908】逆序对
查看>>