iOS開發本機快取(資料離線緩衝、讀取、釋放)

來源:互聯網
上載者:User

標籤:har   擷取   ring   tpi   loaddata   dap   win   dir   resource   

為了節約流量,同時也是為了更好的使用者體驗,目前很多應用都使用本機快取機制,其中以網易新聞的緩衝功能最為出色。我自己的應用也想加入本機快取的功能,於是我從網上查閱了相關的資料,發現總體上說有兩種方法。一種是自己寫緩衝的處理,一種是採用ASIHTTPRequest中的ASIDownloadCache。 

方法一:一般將伺服器第一次返回的資料儲存在沙箱裡面。這樣在手機斷網的情況下可以從本地讀取資料了。

1.儲存到沙箱的代碼:

 

[plain] view plaincopy 
  1. + (void)saveCache:(int)type andID:(int)_id andString:(NSString *)str;  
  2. {  
  3.     NSUserDefaults * setting = [NSUserDefaults standardUserDefaults];  
  4.     NSString * key = [NSString stringWithFormat:@"detail-%d-%d",type, _id];  
  5.     [setting setObject:str forKey:key];  
  6.     [setting synchronize];  
  7. }  

2.讀取本地沙箱的代碼

 

讀取之前首先根據type和Id判斷本地是否有

 

[plain] view plaincopy 
  1. + (NSString *)getCache:(int)type andID:(int)_id  
  2. {  
  3.     NSUserDefaults * settings = [NSUserDefaults standardUserDefaults];  
  4.     NSString *key = [NSString stringWithFormat:@"detail-%d-%d",type, _id];  
  5.       
  6.     NSString *value = [settings objectForKey:key];  
  7.     return value;  
  8. }  

如果沙箱裡面有資料

 

[plain] view plaincopy 
  1. NSString *value = [Tool getCache:5 andID:self.QiuTime];  
  2.         if (value) {  
  3.             NSDictionary *backdict = [value JSONValue];  
  4.             if ([backdict objectForKey:@"items"]) {  
  5.                 NSArray *array=[NSArray arrayWithArray:[backdict objectForKey:@"items"]];  
  6.                 for (NSDictionary *qiushi in array) {  
  7.                     QiuShi *qs=[[[QiuShi alloc]initWithDictionary:qiushi] autorelease];  
  8.                     [self.list addObject:qs];  
  9.                 }  
  10.             }  
  11.             [self.tableView reloadData];  
  12.              
  13.         }  
  14.           
  15.         [self.tableView tableViewDidFinishedLoadingWithMessage:@"資料全部載入完了.."];  
  16.         self.tableView.reachedTheEnd  = YES;  

 

方法二:使用ASIHTTPRequest和ASIDownloadCache實現本機快取

 

1、設定全域的Cache
    在AppDelegate.h中添加一個全域變數

 

[plain] view plaincopy  
  1. @interface AppDelegate : UIResponder   
  2. {  
  3.     ASIDownloadCache *myCache;  
  4. }  
  5. @property (strong, nonatomic) UIWindow *window;  
  6. @property (nonatomic,retain) ASIDownloadCache *myCache;  

   在AppDelegate.m中的- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions方法中添加如下代碼

 

 

[plain] view plaincopy  
  1. //自訂緩衝  
  2. ASIDownloadCache *cache = [[ASIDownloadCache alloc] init];  
  3. self.myCache = cache;  
  4. [cache release];  
  5.       
  6. //設定緩衝路徑  
  7. NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);  
  8. NSString *documentDirectory = [paths objectAtIndex:0];  
  9. [self.myCache setStoragePath:[documentDirectory stringByAppendingPathComponent:@"resource"]];  
  10. [self.myCache setDefaultCachePolicy:ASIOnlyLoadIfNotCachedCachePolicy];  
    

 

    在AppDelegate.m中的dealloc方法中添加如下語句

 

[plain] view plaincopy  
  1. [myCache release];  

    到這裡為止,就完成了全域變數的聲明。

 

    2、設定緩衝策略

    在實現ASIHTTPRequest請求的地方設定request的儲存方式,代碼如下

 

[plain] view plaincopy  
  1. NSString *str = @"http://....../getPictureNews.aspx";  
  2. NSURL *url = [NSURL URLWithString:str];  
  3. ASIHTTPRequest *request = [ASIHTTPRequest requestWithURL:url];  
  4. //擷取全域變數  
  5. AppDelegate *appDelegate = [[UIApplication sharedApplication] delegate];  
  6. //設定緩衝方式  
  7. [request setDownloadCache:appDelegate.myCache];  
  8. //設定快取資料儲存策略,這裡採取的是如果無更新或無法連網就讀取快取資料  
  9. [request setCacheStoragePolicy:ASICachePermanentlyCacheStoragePolicy];  
  10. request.delegate = self;  
  11. [request startAsynchronous];  

    3、清理快取資料

 

    我在這裡採用的是手動清理資料的方式,在適當的地方添加如下代碼,我將清理緩衝放在了應用的設定模組:

 

[plain] view plaincopy  
  1. AppDelegate *appDelegate = [[UIApplication sharedApplication] delegate];  
  2. [appDelegate.myCache clearCachedResponsesForStoragePolicy:ASICachePermanentlyCacheStoragePolicy];  

 

 

    這裡清理的是ASICachePermanentlyCacheStoragePolicy這種儲存策略的快取資料,如果更換其他的參數的話,即可清理對應儲存策略的快取資料。(參考:http://zycto.blog.163.com/blog/static/17152400201110221340738/)

iOS開發本機快取(資料離線緩衝、讀取、釋放)

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.