博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
模拟时间--延时处理
阅读量:6678 次
发布时间:2019-06-25

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

MBProgressHUD *hud = [[MBProgressHUD alloc] initWithView:self.navigationController.view];            [self.navigationController.view addSubview:hud];            hud.labelText = @"正在清除缓存....";            __weak typeof (self)weakSelf = self;            [hud showAnimated:YES whileExecutingBlock:^{                // 模拟删除 要时间                sleep(1.0);            } completionBlock:^{//                [[NSNotificationCenter defaultCenter] postNotificationName:@"CLEARHISTORYTABLE" object:nil];                [hud removeFromSuperview];                NSString *clearCacheName =  [weakSelf clearTmpPics];                [JZGProgressHUD showInfoWithText:@"清理成功" toView:self.view];                weakSelf.cacheLabel.text = clearCacheName;                [weakSelf.tableView reloadRowsAtIndexPaths:[NSArray arrayWithObjects:[NSIndexPath indexPathForRow:3 inSection:0], nil] withRowAnimation:UITableViewRowAnimationNone];            }];

 

转载于:https://www.cnblogs.com/mkai/p/7270243.html

你可能感兴趣的文章
vs 的git插件
查看>>
Android Studio试用文档
查看>>
SQL2005学习(二十三),Select用法三Where
查看>>
SDWebImage原理
查看>>
SpringMvc解决跨域问题[ POST ]
查看>>
我的友情链接
查看>>
kickstart+dhcp+tftp+tftp批量部署rhel6
查看>>
VS2010与.NET4系列 11. WPF 4
查看>>
字符编解码的故事(ASCII,ANSI,Unicode,Utf-8区别)
查看>>
having的另类用法
查看>>
kali***测试(二)sbd,dbd和PowerSploit的介绍
查看>>
Android代码重构总结
查看>>
实用技巧:教你如何在没有网络的Linux机器上快速安装软件
查看>>
JMS消息的概念解释-stomp
查看>>
java引用类型
查看>>
模块、包
查看>>
Jenkins + nodejs编译打包nodejs应用
查看>>
手动新增swap空间
查看>>
PHP 简单留言板
查看>>
朱先生与Python恋爱日记(一、 初识 )
查看>>