我使用負載的plist這是在我的主束(的ressource文件夾)到一個數組使用:負載陣列
NSString *path = [[[NSBundle mainBundle] resourcePath]stringByAppendingPathComponent:nomPlist ];
NSMutableArray *tmpQuestion = [[NSArray alloc] initWithContentsOfFile:path];
arrayQuestion = [ [NSArray alloc] initWithArray:tmpQuestion];
[tmpQuestion release];
因爲我決定改變我的plist和主要的內容bundle是隻讀的我怎麼能讓這個數組從我的應用程序的Documents目錄加載plist? ?
感謝所有