程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> ios-有關在文件夾中保存數組

ios-有關在文件夾中保存數組

編輯:編程綜合問答
有關在文件夾中保存數組

我要為不用用戶賬號創建不同的文件夾,在用戶的文件夾裡還要存儲圖片。但是不知道該如何實現?謝謝~

最佳回答:


在你的應用裡創建directory:

NSArray *paths = NSSearchPathForDirectoriesInDomains(NSLibraryDirectory, NSUserDomainMask, YES); 
NSString *documentsDirectory = [paths objectAtIndex:0];
NSString *folderPath = [documentsDirectory stringByAppendingPathComponent:@"UniqueUserAccount"];

if (![[NSFileManager defaultManager] fileExistsAtPath:folderPath])
   [[NSFileManager defaultManager] createDirectoryAtPath:folderPath withIntermediateDirectories:NO attributes:nil error:&error]; 

保存NSMutableArray,如果不明白可以百度相關說明

folderPath = [folderPath stringByAppendingPathComponent:@"array.out"]; 
[yourArray writeToFile:folderPath atomically:YES];

讀取數組:

NSArray *arrayFromFile = [NSArray arrayWithContentsOfFile:folderPath];
NSLog(@"%@",arrayFromFile);

如果要保存圖片的話:

for(int i = 0;i < [arrImages count];i++)
{
  folderPath = [folderPath stringByAppendingPathComponent:[NSString stringWithFormat:@"Images%d",i]];
  NSMutableString *imgPath;
  imgPath=[[NSMutableString  alloc] initWithString: [[NSBundle mainBundle] resourcePath]]; 
 [imgPath stringByAppendingPathComponent:[arrImages objectAtIndex:i]];
 NSData *imageData = [NSData dataWithContentsOfFile:imgPath]; 

 NSData *imageData = UIImagePNGRepresentation([arrImages objectAtIndex:i]) 

 [imageData writeToFile:folderPath atomically:YES]; 
}
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved