91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

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

發布時間:2021-07-21 14:41:08 來源:億速云 閱讀:112 作者:小新 欄目:移動開發

小編給大家分享一下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];
}

看完了這篇文章,相信你對“KVO如何實現自定義文件復制進度效果”有了一定的了解,如果想了解更多相關知識,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

kvo
AI

汕尾市| 萝北县| 沁源县| 安乡县| 吉木乃县| 平利县| 徐闻县| 达尔| 鱼台县| 东至县| 精河县| 丰台区| 无棣县| 鹿邑县| 新龙县| 贵德县| 清水河县| 高青县| 临桂县| 田东县| 新津县| 旬邑县| 四川省| 开远市| 灵川县| 齐河县| 社旗县| 鹿泉市| 高雄市| 安阳市| 安国市| 佛坪县| 修水县| 温宿县| 杨浦区| 石景山区| 安陆市| 定州市| 桂阳县| 靖远县| 福建省|