代码之家  ›  专栏  ›  技术社区  ›  Jack

创建plistiphonesdk

  •  2
  • Jack  · 技术社区  · 14 年前

    - (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

    1 回复  |  直到 14 年前
        1
  •  3
  •   Nikolai Ruhe    14 年前

    您只需使用

    NSMutableDictionary* plistDict = [NSMutableDictionary dictionary];