IOS對plist配置文件的讀寫操作


讀取:
---------------------------------------------------------------

//首先讀取studentInfo.plist中的數據
NSString *plistPath = [[NSBundle mainBundle] pathForResource:@"customInfo" ofType:@"plist"];
NSDictionary *dictionary = [[NSDictionary alloc] initWithContentsOfFile:plistPath];
    
//將學生信息填入視圖
NSDictionary *tmpInfo = [dictionary objectForKey: @"Student"];
self.stuName.text = [NSString stringWithFormat:@"%@", [tmpInfo objectForKey: @"Name"]];
self.stuSex.text = [NSString stringWithFormat:@"%@", [tmpInfo objectForKey: @"Sex"]];
self.stuNum.text = [NSString stringWithFormat:@"%@", [tmpInfo objectForKey: @"Num"]];
    
//將導師信息寫入視圖
tmpInfo = [dictionary objectForKey: @"Mentor"];
self.mtName.text = [NSString stringWithFormat:@"%@", [tmpInfo objectForKey: @"Name"]];
self.mtSex.text = [NSString stringWithFormat:@"%@", [tmpInfo objectForKey: @"Sex"]];

 



全新寫入:
---------------------------------------------------------------
NSMutableDictionary *dictplist = [[NSMutableDictionary alloc ] init];
//定義第一個插件的屬性
NSMutableDictionary *plugin1 = [[NSMutableDictionary alloc]init];
[plugin1 setObject:@"張三" forKey:@"name1"];
[plugin1 setObject:@"李四" forKey:@"name2"];
//定義第二個插件的屬性
NSMutableDictionary *plugin2 = [[NSMutableDictionary alloc]init];
[plugin2 setObject:@"王五" forKey:@"name1"];
[plugin2 setObject:@"趙斌" forKey:@"name2"];
//設置屬性值
[dictplist setObject:plugin1 forKey:@"初一班"];
[dictplist setObject:plugin2 forKey:@"初二班"];
//寫入文件
[dictplist writeToFile:plistPath atomically:YES];

 

 

//修改某一配置項。

 

//載入配置文件。   
    NSString* plistPath = [NSString stringWithFormat:@"%@/letters.plist",[[Globals getResourceManager] getResPath]];
        
    NSMutableDictionary* dicWrite = [[[NSMutableDictionary alloc] initWithContentsOfFile:plistPath] mutableCopy];
    NSMutableDictionary* dicWLetter = [dicWrite objectForKey:letter];
    NSString* v = alertView.tag == 1 ? @"1" : @"0";
    [dicWLetter setValue:v forKey:@"isOk"];
    [dicWrite setValue:dicWLetter forKey:letter];
    
    [dicWrite writeToFile:plistPath atomically:YES];
    [dicWrite release];
    dicWrite = nil;

 

 

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM