這是很簡單的。但是你可能想看看NSMutableDictionary。 NSString和Dictionary都有方法writeToFile:@「filename.txt」。
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *documentsDirectory = [paths objectAtIndex:0];
NSMutableDictionary *dict = [[NSMutableDictionary alloc] init];
[dict setValue:[nameField stringValue] forKey:@"name"];
[dict setValue:[weightField stringValue] forKey:@"weight"];
[dict setValue:date forKey:@"date"];
[dict writeToFile:name atomically:YES];
您從文件的方式閱讀,
NSMutableDictionary *dict = [[NSMutableDictionary alloc] initWithContentsOfFile:name];
由於它得到
如果你正在尋找的只是存儲數據,那麼你可以使用coredata儲存它,而不是將其存儲到文本文件 –
也請編輯您的標題以一種有意義的方式.. **可可和目標C **沒有按」牛逼幫助任何人 – Krishnabhadra
請參閱此鏈接[http://klanguedoc.hubpages.com/hub/How-To-Read-and-Write-to-Files-with-IOS-5-SDK-Objective-C-iPad-iPhone-與iPod觸摸](http://klanguedoc.hubpages.com/hub/How-To-Read-and-Write-to-Files-with-IOS-5-SDK-Objective-C-iPad-iPhone-iPod-Touch )這是很好的關於保存/讀取文檔目錄中的文本文件的教程。希望它可以幫助你.. –