这是我的代码:
NSString *plistDataPath = [[NSBundle mainBundle] pathForResource:@"CustomServices" ofType:@"plist"];
NSMutableArray *CustomServicesArray = [[NSMutableArray alloc] initWithObjects:
textboxValues[0],textboxValues[1],textboxValues[2],textboxValues[3],
textboxValues[4],textboxValues[5],textboxValues[6],textboxValues[7],
textboxValues[8],textboxValues[9],textboxValues[10],textboxValues[11],
textboxValues[12],textboxValues[13],textboxValues[14],textboxValues[15],
textboxValues[16],textboxValues[17],textboxValues[18],textboxValues[19],
textboxValues[20],textboxValues[21],textboxValues[22],textboxValues[23],
nil];
if(![CustomServicesArray writeToFile:plistDataPath atomically:NO]) {
NSLog(@"Array wasn't saved properly");
};
CustomServicesArray中包含有效数据,并且 writeToFile 没有返回任何错误。我看过这个文件,它有昨天的创建日期,但它是空的;显然它今天没有覆盖文件。我应该先删除特定的plist文件吗?