码迷,mamicode.com
首页 > 其他好文 > 详细

拨打电话和清除缓存

时间:2016-05-31 12:14:43      阅读:160      评论:0      收藏:0      [点我收藏+]

标签:

NSLog(@"客服电话");

    UIWebView*callWebview =[[UIWebView alloc] init];

    NSURL *telURL =[NSURL URLWithString:@"tel:400-041-5656"];// 貌似tel:// 或者 tel: 都行

    [callWebview loadRequest:[NSURLRequest requestWithURL:telURL]];

    //记得添加到view上

    [self.view addSubview:callWebview];

 

 

 

获取缓存文件的大小

由于缓存文件存在沙箱中,我们可以通过NSFileManager API来实现对缓存文件大小的计算。

计算单个文件大小

 

计算目录大小

+(float)folderSizeAtPath:(NSString *)path{  NSFileManager *fileManager=[NSFileManager defaultManager];  float folderSize;  if ([fileManager fileExistsAtPath:path]) {    NSArray *childerFiles=[fileManager subpathsAtPath:path];    for (NSString *fileName in childerFiles) {      NSString *absolutePath=[path stringByAppendingPathComponent:fileName];      folderSize +=[FileService fileSizeAtPath:absolutePath];    }   //SDWebImage框架自身计算缓存的实现    folderSize+=[[SDImageCache sharedImageCache] getSize]/1024.0/1024.0;    return folderSize;  }  return 0;
}

清理缓存文件

同样也是利用NSFileManager API进行文件操作,SDWebImage框架自己实现了清理缓存操作,我们可以直接调用。

+(void)clearCache:(NSString *)path{  NSFileManager *fileManager=[NSFileManager defaultManager];  if ([fileManager fileExistsAtPath:path]) {    NSArray *childerFiles=[fileManager subpathsAtPath:path];    for (NSString *fileName in childerFiles) {      //如有需要,加入条件,过滤掉不想删除的文件      NSString *absolutePath=[path stringByAppendingPathComponent:fileName];      [fileManager removeItemAtPath:absolutePath error:nil];    }  }  [[SDImageCache sharedImageCache] cleanDisk];
}

 

拨打电话和清除缓存

标签:

原文地址:http://www.cnblogs.com/vikki0620/p/5545341.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!