摘要:
//1、文件夹、文件的创建和删除 NSFileManager *fileManager=[NSFileManager defaultManager]; NSString *filePath=@"/Users/apple/Desktop/"; NSError *error; //判断当前文件夹是否存在 阅读全文
摘要:
1、APP沙盒目录结构简介 首先奉上苹果官方文档: https://developer.apple.com/library/archive/documentation/FileManagement/Conceptual/FileSystemProgrammingGuide/FileSystemOve 阅读全文
摘要:
//1、GCD 继承自C语言 优点 简单方便 //开启一个子线程处理耗时的操作 dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{ //在主线程处理UI更新相关的操作 dispatch_as 阅读全文