//

//  SetViewController.m

//  dfhx

//

//  Created by dfhx_iMac_001 on 16/4/5.

//  Copyright © 2016年 luoyun. All rights reserved.

//

#import "SetViewController.h"

@interface SetViewController ()<UITableViewDelegate,UITableViewDataSource>

@property (nonatomic, strong) UITableView * tableView;

@property (nonatomic, strong) NSArray * dataSource;

@property (nonatomic, copy) NSString * cacheSize;

@property (nonatomic, strong) UIView * navView;

@end

@implementation SetViewController

- (void)viewDidLoad {

[super viewDidLoad];

// Do any additional setup after loading the view.

[self tableView];

[self navView];

}

- (UIView *)navView

{

if (!_navView) {

_navView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, Screen_Width, 64)];

_navView.backgroundColor = RGBA(51, 51, 51, 1);

[self.view addSubview:_navView];

UIButton * btn = [UIButton buttonWithType:UIButtonTypeCustom];

[_navView addSubview:btn];

[btn mas_makeConstraints:^(MASConstraintMaker *make) {

make.left.mas_equalTo(_navView).offset(10);

make.size.mas_equalTo(CGSizeMake(40, 40));

make.topMargin.offset(20);

}];

[btn addTarget:self action:@selector(btnAction) forControlEvents:UIControlEventTouchUpInside];

[btn setImage:[UIImage imageNamed:@"backItemImg.png"] forState:UIControlStateNormal];

[btn setImageEdgeInsets:UIEdgeInsetsMake(15, 5, 8, 23)];

}

return _navView;

}

- (void)btnAction

{

AppDelegate * app = (AppDelegate *)[UIApplication sharedApplication].delegate;

[app.window setRootViewController:app.leftSlide];

}

// 设置返回导航栏

- (void)setNavigation

{

UIBarButtonItem *LeftButton = [[UIBarButtonItem  alloc] initWithTitle:nil style:UIBarButtonItemStylePlain target:self action:@selector(back)];

[LeftButton setImage:[UIImage imageNamed:@"backItemImg.png"]];

LeftButton.imageInsets = UIEdgeInsetsMake(20, 0, 15, 20);

LeftButton.tintColor = [UIColor whiteColor];

self.navigationItem.leftBarButtonItem = LeftButton;

}

- (void)back

{

[self.navigationController popViewControllerAnimated:YES];

}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section

{

return 1;

}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath

{

static NSString * reuseID = @"cell";

UITableViewCell * cell = [tableView dequeueReusableCellWithIdentifier:reuseID];

if (!cell) {

cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleValue1 reuseIdentifier:reuseID];

}

cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;

cell.textLabel.text =@"清除缓存";

cell.detailTextLabel.text = self.cacheSize;

cell.selectionStyle = UITableViewCellSeparatorStyleSingleLine;

[self myClearCacheAction:NO];

return cell;

}

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath

{

if ([self.cacheSize isEqualToString:@"0.00MB"]) {

[self alertView:@"当前无缓存!" cancel:@""];

}

else

{

[self alertView:@"确认清除缓存?" cancel:@"取消"];

}

}

- (void)alertView:(NSString *)alertTitle cancel:(NSString *)cancelTitle

{

UIAlertController *alertController = [UIAlertController alertControllerWithTitle:alertTitle message:@"" preferredStyle:UIAlertControllerStyleAlert];

UIAlertAction *cancelAction = [UIAlertAction actionWithTitle:cancelTitle style:UIAlertActionStyleCancel handler:nil];

UIAlertAction *okAction = [UIAlertAction actionWithTitle:@"好的" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {

if ([alertTitle isEqualToString:@"确认清除缓存?"]) {

//清除缓存

[self myClearCacheAction:YES];

}

}];

if ([cancelTitle isEqualToString:@""]) {

[alertController addAction:okAction];

}

else

{

[alertController addAction:cancelAction];

[alertController addAction:okAction];

}

[self presentViewController:alertController animated:YES completion:nil];

}

//清理缓存

-(void)myClearCacheAction:(BOOL)isClear

{

if (isClear == YES) {

dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{

NSString *cachePath = [NSSearchPathForDirectoriesInDomains(NSCachesDirectory, NSUserDomainMask, YES) objectAtIndex:0];

NSArray *files = [[NSFileManager defaultManager] subpathsAtPath:cachePath];

for (NSString *p in files) {

NSError *error;

NSString *path = [cachePath stringByAppendingPathComponent:p];

if ([[NSFileManager defaultManager] fileExistsAtPath:path]) {

//清理缓存文件

[[NSFileManager defaultManager] removeItemAtPath:path error:&error];

}

}

[self performSelectorOnMainThread:@selector(clearCacheSuccess) withObject:nil waitUntilDone:YES];

});

}

else

{

dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_HIGH, 0), ^{

NSString *cachePath = [NSSearchPathForDirectoriesInDomains(NSCachesDirectory, NSUserDomainMask, YES) objectAtIndex:0];

CGFloat fileSize = [self folderSizeAtPath:cachePath];

dispatch_async(dispatch_get_main_queue(), ^{

NSString * t = [NSString stringWithFormat:@"%.2fMB",fileSize];

self.cacheSize = t;

NSIndexPath *indexPath=[NSIndexPath indexPathForRow:0 inSection:0];

[self.tableView reloadRowsAtIndexPaths:[NSArray arrayWithObjects:indexPath,nil] withRowAnimation:UITableViewRowAnimationNone];

});

});

}

}

-(void)clearCacheSuccess

{

NSLog(@"缓存已清除!");

}

//计算目录下所有文件大小

- (CGFloat)folderSizeAtPath:(NSString *)folderPath

{

NSFileManager *manager = [NSFileManager defaultManager];

if (![manager fileExistsAtPath:folderPath]) {

return 0;

}

NSEnumerator *childFilesEnumerator = [[manager subpathsAtPath:folderPath] objectEnumerator];

NSString *fileName = nil;

long long folderSize = 0;

while ((fileName = [childFilesEnumerator nextObject]) != nil) {

NSString *fileAbsolutePath = [folderPath stringByAppendingPathComponent:fileName];

folderSize += [self fileSizeAtPath:fileAbsolutePath];

}

return folderSize/(1024.0*1024.0);

}

//计算文件大小

- (long long)fileSizeAtPath:(NSString *)filePath

{

NSFileManager* manager = [NSFileManager defaultManager];

if ([manager fileExistsAtPath:filePath]){

return [[manager attributesOfItemAtPath:filePath error:nil] fileSize];

}

return 0;

}

// 懒加载tableview

- (UITableView *)tableView

{

if (!_tableView) {

_tableView = [[UITableView alloc] initWithFrame:CGRectMake(0, 64, self.view.width, self.view.height) style:UITableViewStylePlain];

_tableView.dataSource = self;

_tableView.delegate  = self;

_tableView.backgroundColor = [UIColor whiteColor];

_tableView.showsHorizontalScrollIndicator = NO;

_tableView.showsVerticalScrollIndicator = NO;

_tableView.tableFooterView = [[UIView alloc] initWithFrame:CGRectZero];

_tableView.scrollEnabled = NO;

[self.view addSubview:_tableView];

}

return _tableView;

}

#pragma mark ------当页面出现和消失的时候--------

- (void)viewWillAppear:(BOOL)animated

{

[super viewWillAppear:animated];

self.tabBarController.tabBar.hidden = YES;

}

- (void)viewWillDisappear:(BOOL)animated

{

[super viewWillDisappear:animated];

self.navigationController.navigationBarHidden = NO;

self.tabBarController.tabBar.hidden = NO;

}

- (void)didReceiveMemoryWarning {

[super didReceiveMemoryWarning];

// Dispose of any resources that can be recreated.

}

/*

#pragma mark - Navigation

// In a storyboard-based application, you will often want to do a little preparation before navigation

- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender {

// Get the new view controller using [segue destinationViewController].

// Pass the selected object to the new view controller.

}

*/

@end

iOS开发 -李洪强-清除缓存的更多相关文章

  1. 李洪强iOS开发之数据存储

    李洪强iOS开发之数据存储 iOS应用数据存储的常用方式 1.lXML属性列表(plist)归档 2.lPreference(偏好设置) 3.lNSKeyedArchiver归档(NSCoding) ...

  2. 李洪强漫谈iOS开发[C语言-002]-开发概述程序的本质与简单执行过程

    李洪强iOS开发之应用程序的本质与简单执行过程 什么叫程序? 就是一段执行指令 程序的两个状态: 保存状态(保存到硬盘上)   运行状态(由CPU执行) 代码可以执行吗? CPU(中央处理器-> ...

  3. 李洪强iOS开发之性能优化技巧

    李洪强iOS开发之性能优化技巧 通过静态 Analyze 工具,以及运行时 Profile 工具分析性能瓶颈,并进行性能优化.结合本人在开发中遇到的问题,可以从以下几个方面进行性能优化. 一.view ...

  4. 李洪强漫谈iOS开发[C语言-043]-判断较早日期

    李洪强漫谈iOS开发[C语言-043]-判断较早日期

  5. 李洪强iOS开发之添加手势

    李洪强iOS开发之添加手势 02 - 添加手势

  6. 李洪强iOS开发之- 实现简单的弹窗

     李洪强iOS开发之- 实现简单的弹窗 实现的效果:  112222222222223333333333333333

  7. 李洪强iOS开发之后使用XIB实现横向滚动的UIScrollView

    李洪强iOS开发之后使用XIB实现横向滚动的UIScrollView 11111222

  8. 李洪强iOS开发之苹果使用预览截图

    李洪强iOS开发之苹果使用预览截图 01 在预览的图片中选中你要截得区域  02 - command + C   03 - Command + N 04 - Command + S (保存)

  9. 李洪强iOS开发之通知的使用

    李洪强iOS开发之通知的使用 01 - 在A中发送通知 02 - 在B中监听通知 03 - 在B中通知出发的方法 04 - 在B控制器viewDidLoad调用通知

随机推荐

  1. 使用Hexo快速搭建一个博客,并部署到github

    本文旨在记录一下我在通过hexo搭建一个博客,并将其部署在github上面的过程,也供我自己在以后的使用过程中能够快速学习和参考.需要看更详细或者官方文档的可以点击Hexo官方文档进行查看. 安装前提 ...

  2. ES6 import 引用文件夹/目录及其处理过程

    1.现象 看redux的时候发现官网的教程里直接import了一个文件夹,我再三确定没有看错, 是一个 文件夹 (Directory), 它直接 import了一个目录!这个 文件夹/目录 底下还有一 ...

  3. 第二章:ES索引说明

    1."_boost": 20评分的权重(排序) 2."analyzer": "ik"中文分词 "analyzer": & ...

  4. [PHP]如何使用Mobile_Detect来判断访问网站的设备:安卓,平板,电脑

    Mobile_Detect 是一个轻量级的开源移动设备(手机)检测的 PHP Class, 它使用 User-Agent 中的字符串,并结合 HTTP Header,来检测移动设备环境. 这个设备检测 ...

  5. Groovy(java)+Spock+IDEA+maven+Jenkins+SVN+maven-surefire-plugin+maven-surefire-report-plugin/maven-antrun-extended-plugin集成接口测试框架

    文章为原创,未经本人授权禁止转载. 一.spock框架环境搭建. 二.基于spock框架的脚本开发. 三.基于spock框架的用例执行并生成HTML报告. 四.集成jenkins生成HTML报告. 五 ...

  6. C#秘密武器之多线程——基础

    多线程概述 什么是进程? 当一个程序开始运行时,它就是一个进程,进程包括运行中的程序和程序所使用到的内存和系统资源.而一个进程又是由多个线程所组成的. 什么是线程? 线程是程序中的一个执行流,每个线程 ...

  7. IPhone打包工具脚本

    (后面就是代码了,我就不翻译了.) #!/usr/bin/perl use File::Copy; my $installPath = $ARGV[]; #the name that displays ...

  8. GOF设计模式之单例模式

    定义 单例模式(Singleton Pattern)的定义如下:Ensure a class only has one instance, and provide a global point of ...

  9. taro 自定义 轮播图组件

    1.代码 components/MySwiper/index.js /** * 轮播图组件 */ import Taro, { Component } from '@tarojs/taro'; imp ...

  10. 纯JS写的2048游戏,分享之

    这几天玩儿着2048这个游戏,突然心血来潮想练习下敲代码的思路.于是乎就模仿做了一个,到眼下位置还没有实现动态移动,不是非常好看,只是玩儿着自己模仿的小游戏还是蛮爽的,哈哈 假设没有玩儿过这个游戏,最 ...