ios开发怎么从沙盒中取出大量的数据而不卡

 我来答
百度网友e2a1f4b
2016-08-27 · TA获得超过365个赞
知道小有建树答主
回答量:779
采纳率:70%
帮助的人:402万
展开全部
从沙盒中取数据是需要异步处理的,跟从数据库和后台接口取数据一样。必须采用异步处理,不能直接在主线程中取数据。例如下面的沙盒操作。

[self showProgressWithView:self.view animated:YES];

dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{

NSString *docDirPath = [NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) objectAtIndex:0];

NSString *path = [self libCachePath];

// NSString *filePath = [NSString stringWithFormat:@"%@/%@.zip", docDirPath , [name stringFromMD5]];

NSFileManager* fileManager=[NSFileManager defaultManager];

/**删除zip文件*/

NSDirectoryEnumerator *enumerator = [[NSFileManager defaultManager] enumeratorAtPath:docDirPath];

for (NSString *fileName in enumerator) {

[[NSFileManager defaultManager] removeItemAtPath:[docDirPath stringByAppendingPathComponent:fileName] error:nil];

}

[fileManager removeItemAtPath:path error:nil];

[DBDaoHelper createAllTable];

dispatch_async(dispatch_get_main_queue(), ^{

[self hideProgress:self.view animated:YES];

});
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式