首页 > 代码库 > 网络编程练习 -- NSURLCache
网络编程练习 -- NSURLCache
LWTViewController.m
//// LWTViewController.m// 网络编程练习 -- NSURLCache//// Created by apple on 14-7-2.// Copyright (c) 2014年 lwt. All rights reserved.//#import "LWTViewController.h"@interface LWTViewController ()@end@implementation LWTViewController- (void)viewDidLoad{ [super viewDidLoad]; // Do any additional setup after loading the view, typically from a nib.}- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event{ NSURL *url = [NSURL URLWithString:@"http://192.168.1.24:8080/MJServer/resources/video"]; NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:url]; NSURLCache *cache = [NSURLCache sharedURLCache]; cache.memoryCapacity = 1024 * 1024; cache.diskCapacity = 10 * 1024 * 1024; request.cachePolicy = NSURLRequestReturnCacheDataElseLoad; NSCachedURLResponse *response = [cache cachedResponseForRequest:request]; if (response) { NSLog(@"---这个请求已经存在缓存"); } else { NSLog(@"---这个请求没有缓存"); } [NSURLConnection sendAsynchronousRequest:request queue:[NSOperationQueue mainQueue] completionHandler:^(NSURLResponse *response, NSData *data, NSError *connectionError) { NSDictionary *dict = [NSJSONSerialization JSONObjectWithData:data options:NSJSONReadingMutableContainers error:nil]; NSLog(@"%@",dict); }]; }@end
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。