2
我想設置一個方法,在給定的文件路徑上創建.plist文件,但是我當前的代碼只能用於修改plist。有沒有簡單的方法來創建plist文件?這只是該方法的初稿,最終版本將爲course_title帶來一個變量。由於創建一個plist iPhone SDK
- (void)writeToPlist{
NSString *filePath = [NSString stringWithFormat:@"%@/course_title", DOCUMENTS_FOLDER];
NSMutableDictionary* plistDict = [[NSMutableDictionary alloc] initWithContentsOfFile:filePath];
[plistDict setValue:@"1.1.1" forKey:@"ProductVersion"];
[plistDict writeToFile:filePath atomically: YES];
}
感謝您的代碼去http://www.ipodtouchfans.com/forums/showthread.php?t=64679
非常感謝你 - 回頭看我不知道我怎麼沒有意識到這一點。乾杯 – Jack 2010-02-02 21:57:17