国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 系統 > iOS > 正文

KVO實現自定義文件復制進度效果

2020-07-26 02:43:57
字體:
來源:轉載
供稿:網友

本文實例為大家分享了KVO實現自定義文件復制進度展示的具體代碼,供大家參考,具體內容如下

一、創建文件

說明:自定義文件類,通過NSFileManager 以及NSFileHandle 實現文件的創建和copy,為了控制內存的并發使用,通過控制每次賦值的固定長度來分多次復制:

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,并提供方法接口,啟動文件拷貝。

- (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];}

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持武林網。

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 乌恰县| 建阳市| 固镇县| 岫岩| 内乡县| 峨边| 西乡县| 贵港市| 太谷县| 古丈县| 庆安县| 镇江市| 静乐县| 金门县| 岢岚县| 蒙山县| 梁山县| 冀州市| 鄄城县| 永德县| 遂昌县| 塔城市| 枣强县| 双江| 望城县| 麻城市| 卓资县| 临澧县| 昆明市| 锦屏县| 习水县| 拉萨市| 芦山县| 红安县| 航空| 崇义县| 东兴市| 吉首市| 罗山县| 宜宾县| 名山县|