iOS中plist的建立,資料寫入與讀取

來源:互聯網
上載者:User

功能建立一個test.plist檔案,textInput作為輸入,displayLabel作為顯示,有一個按鈕來觸發保持程式triggerStorage;-(void)triggerStorage{    displayLabel.text = textInput.text;        NSArray *paths=NSSearchPathForDirectoriesInDomains(NSDocumentDirectory,NSUserDomainMask,YES);    NSString *path=[paths    objectAtIndex:0];      NSString *filename=[path stringByAppendingPathComponent:@"test.plist"];   //擷取路徑        NSDictionary* dic2 = [NSDictionary dictionaryWithContentsOfFile:filename];  //讀取資料    NSLog(@"dic2 is:%@",dic2);         //建立一個dic,寫到plist檔案裡    NSDictionary* dic = [NSDictionary dictionaryWithObjectsAndKeys:displayLabel.text,@"IP",nil]; //寫入資料    [dic writeToFile:filename atomically:YES];    } // Implement viewDidLoad to do additional setup after loading the view, typically from a nib.- (void)viewDidLoad{    NSMutableArray *resultData;     NSArray *paths=NSSearchPathForDirectoriesInDomains(NSDocumentDirectory,NSUserDomainMask,YES);    NSString *path=[paths objectAtIndex:0];    NSLog(@"path = %@",path);       NSString *filename=[path stringByAppendingPathComponent:@"test.plist"];       //讀檔案    NSDictionary* dic2 = [NSDictionary dictionaryWithContentsOfFile:filename];    NSLog(@"dic is:%@",dic2);        if(dic2 == nil)    {        //1. 建立一個plist檔案         NSFileManager* fm = [NSFileManager defaultManager];        [fm createFileAtPath:filename contents:nil attributes:nil];            }    else    {        resultData=[dic2 objectForKey:@"IP"];         if([dic2 count] > 0)        {            displayLabel.text = resultData;        }        else        {            displayLabel.text = @" ";        }    }    self.navigationItem.rightBarButtonItem = [[[UIBarButtonItem alloc]   //按鈕的初始化及觸發條件設定                                               initWithTitle:@"儲存"                                                style:UIBarButtonItemStylePlain                                                target:self                                                action:@selector(triggerStorage)] autorelease];        [super viewDidLoad];}------------------------------------------------------------------------------------------------------------------------------------------------------------參考代碼:plist 檔案讀寫    //1. 建立一個plist檔案    NSArray *paths=NSSearchPathForDirectoriesInDomains(NSDocumentDirectory,NSUserDomainMask,YES);  www.2cto.com    NSString *path=[paths    objectAtIndex:0];    NSLog(@"path = %@",path);    NSString *filename=[path stringByAppendingPathComponent:@"test.plist"];        NSFileManager* fm = [NSFileManager defaultManager];    [fm createFileAtPath:filename contents:nil attributes:nil];            //NSDictionary* dic = [NSDictionary dictionaryWithContentsOfFile:plistPath];        //建立一個dic,寫到plist檔案裡    NSDictionary* dic = [NSDictionary dictionaryWithObjectsAndKeys:@"sina",@"1",@"163",@"2",nil];    [dic writeToFile:filename atomically:YES];        //讀檔案    NSDictionary* dic2 = [NSDictionary dictionaryWithContentsOfFile:filename];    NSLog(@"dic is:%@",dic2);

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.