我添加的文本文件到mainbundle,我寫上線來控制我的應用程序是這樣讀寫應用IOS問題開始
NSString *fileName = [[NSBundle mainBundle] pathForResource:@"TestCases" ofType:@"txt"];
NSString *content = [[NSString alloc] initWithContentsOfFile:fileName
usedEncoding:nil
error:nil];
if ([content length] == 0) {
[self MoveAndBuild ];
}
content = @"Downloaded";
[content writeToFile:fileName
atomically:NO
encoding:NSStringEncodingConversionAllowLossy
error:nil];
開什麼supossed是[自MoveAndBuild]安裝應用程序後調用只是一個時間,但它被稱爲每次應用程序打開時,我失去的東西
問候
你可以給我更多的細節,在那裏我將保存數據,將checcked – Ali 2011-04-05 13:16:24
這就是你需要的一切,它應該沒問題。更多信息在這裏http://www.icodeblog.com/2008/10/03/iphone-programming-tutorial-savingretrieving-data-using-nsuserdefaults/ – Mason 2011-04-05 13:17:59
什麼是默認值在開始 – Ali 2011-04-05 13:21:21