私はメインバンドル(Ressourceフォルダー)にあるplistを以下を使用して配列にロードするために使用します:
NSString *path = [[[NSBundle mainBundle] resourcePath]stringByAppendingPathComponent:nomPlist ];
NSMutableArray *tmpQuestion = [[NSArray alloc] initWithContentsOfFile:path];
arrayQuestion = [ [NSArray alloc] initWithArray:tmpQuestion];
[tmpQuestion release];
plistのコンテンツを変更することにし、そのメインバンドルは読み取り専用なので、アプリのDocumentsディレクトリからこの配列にplistをロードするにはどうすればよいですか??
ありがとうございます