目前,如果是在我的用戶/文件夾,我只能訪問我的plist,我怎樣才能使項目的plist一部分,而不是(我使用的Xcode 4 ),我正在使用命令行來測試理論,但我想將它合併到一個應用程序中。我需要將其添加到構建?的plist文件中的文件夾 - 它需要與項目
//=================GET FILE PATH FOR PLIST
NSError *error;
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES); //1 Create a list of paths.
NSString *documentsDirectory = [paths objectAtIndex:0];
NSString *path = [documentsDirectory stringByAppendingPathComponent:@"mypList.plist"]; //3
NSFileManager *fileManager = [NSFileManager defaultManager];
if (![fileManager fileExistsAtPath: path])
{
NSString *bundle = [[NSBundle mainBundle] pathForResource:@"mypList" ofType:@"plist"]; //5
[fileManager copyItemAtPath:bundle toPath: path error:&error]; }
}
//==================READ PLIST
NSMutableDictionary *savedStock = [[NSMutableDictionary alloc] initWithContentsOfFile: path];
NSLog(@"%@", savedStock);
[savedStock release];
是感謝,我見過的最好的地方是添加到支持文件部分。 – John67