"把字典写入到文件中" /** * @param path 文件路径与文件名 * @param atomically 是否需要线程安全 * * @return BOOL */ - (BOOL)writeToFile:(NSString *)path atomically:(BOOL)useAuxiliaryFile;
"从文件中读取内容,到字典中" /** * @param path 文件路径与文件名 * * @return 字典对象 */ + (NSDictionary *)dictionaryWithContentsOfFile:(NSString *)path;
|