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