本文实例为大家分享了KVO实现自定义文件复制进度展示的具体代码,供大家参考,具体内容如下
一、创建文件
说明:自定义文件类,通过NSFileManager 以及NSFileHandle 实现文件的创建和copy,为了控制内存的并发使用,通过控制每次赋值的固定长度来分多次复制:
?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
NSString * path=NSHomeDirectory();
path =[path stringByAppendingPathComponent:@ "deskTop/Boby.m" ];
NSString * target=NSHomeDirectory();
target =[target stringByAppendingPathComponent:@ "deskTop/target.m" ];
NSFileManager * manager=[NSFileManager defaultManager];
//校验并且创建文件
if (![manager fileExistsAtPath:path]){
[manager createFileAtPath:path contents:nil attributes:nil];
}
if (![manager fileExistsAtPath:target]){
[manager createFileAtPath:target contents:nil attributes:nil];
}
NSDictionary * dic=[manager attributesOfItemAtPath:path error:nil];
NSFileHandle * handle=[NSFileHandle fileHandleForReadingAtPath:path];
NSFileHandle * handletTarget=[NSFileHandle fileHandleForWritingAtPath:target];
int total=( int )[dic[@ "NSFileSize" ] integerValue];
self.totalSize=total;
int per=50;
int count=total%per==0?total/per:total/per+1;
for ( int i=0;i<count;i++){
[handle seekToFileOffset:self.nowSize];
NSData *data= [handle readDataOfLength:per];
int tem=per*(i+1);
if (tem>total){
tem=total;
}
self.nowSize=tem;
[handletTarget seekToEndOfFile];
[handletTarget writeData:data];
[NSThread sleepForTimeInterval:0.2];
}
[handle closeFile];
[handletTarget closeFile];
|
二、设置观察者
说明:自定义使用者,通过设置观察者来动态观察当前文件copy的进度并展示到控制台或者输出到UI,并提供方法接口,启动文件拷贝。
?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
- (id) initWithFile:(FileMake *)files{
self=[super init];
if (self){
self.file= files;
[self.file addObserver:self forKeyPath:@ "nowSize" options:NSKeyValueObservingOptionNew context:nil];
}
return self;
}
-( void )observeValueForKeyPath:(NSString *)keyPath ofObject:(id)object change:(NSDictionary *)change context:( void *)context{
CGFloat all=self.file.totalSize;
CGFloat now=[[change objectForKey:@ "new" ] floatValue];
CGFloat result=now/all;
NSLog(@ "%.2f" ,result);
//一定不能忘了销毁当前的观察者
if (result==1){
[self.file removeObserver:self forKeyPath:@ "nowSize" ];
}
}
- ( void ) begin{
[self.file startCopy];
}
|
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持快网idc。
相关文章
猜你喜欢
- 个人网站服务器域名解析设置指南:从购买到绑定全流程 2025-06-10
- 个人网站搭建:如何挑选具有弹性扩展能力的服务器? 2025-06-10
- 个人服务器网站搭建:如何选择适合自己的建站程序或框架? 2025-06-10
- 64M VPS建站:能否支持高流量网站运行? 2025-06-10
- 64M VPS建站:怎样选择合适的域名和SSL证书? 2025-06-10
TA的动态
- 2025-07-10 怎样使用阿里云的安全工具进行服务器漏洞扫描和修复?
- 2025-07-10 怎样使用命令行工具优化Linux云服务器的Ping性能?
- 2025-07-10 怎样使用Xshell连接华为云服务器,实现高效远程管理?
- 2025-07-10 怎样利用云服务器D盘搭建稳定、高效的网站托管环境?
- 2025-07-10 怎样使用阿里云的安全组功能来增强服务器防火墙的安全性?
快网idc优惠网
QQ交流群
您的支持,是我们最大的动力!
热门文章
-
2025-05-29 80
-
2025-05-29 68
-
2025-05-25 67
-
2025-05-25 72
-
2025-05-25 49
热门评论