博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
iphone-common-codes-ccteam源代码 CCPlistFileWritter.m
阅读量:6234 次
发布时间:2019-06-21

本文共 1700 字,大约阅读时间需要 5 分钟。

// //  CCPlistFileWritter.m //  CCFC // //  Created by xichen on 11-12-18. //  Copyright 2011 ccteam. All rights reserved. // #import "CCPlistFileWritter.h" @implementation CCPlistFileWritter - (void)initWritterObjOnce {
if(_writterObj == nil) {
_writterObj = [[NSMutableDictionary alloc] initWithDictionary:_internal copyItems:YES]; [_internal release]; _internal = nil; } } - (void)removeObjectForKey:(id)key {
[self initWritterObjOnce]; [_writterObj removeObjectForKey:key]; } - (void)setObject:(id)object forKey:(id)key {
[self initWritterObjOnce]; [_writterObj setObject:object forKey:key]; } - (void)addObject:(id)object {
[self initWritterObjOnce]; [_writterObj addObject:object]; } - (void)insertObject:(id)object atIndex:(NSUInteger)index {
[self initWritterObjOnce]; [_writterObj insertObject:object atIndex:index]; } - (void)removeLastObject {
[self initWritterObjOnce]; [_writterObj removeLastObject]; } - (void)removeObjectAtIndex:(NSUInteger)index {
[self initWritterObjOnce]; [_writterObj removeObjectAtIndex:index]; } - (void)replaceObjectAtIndex:(NSUInteger)index withObject:(id)object {
[self initWritterObjOnce]; [_writterObj replaceObjectAtIndex:index withObject:object]; } - (void)dealloc {
[_writterObj release]; [super dealloc]; } @end

 

可能有更新:

 googlecode链接地址:
 github地址:

 

转载于:https://www.cnblogs.com/ccteam/archive/2012/01/02/2310200.html

你可能感兴趣的文章
从源码分析scrollTo、scrollBy、Scroller方法的区别和作用
查看>>
ObjectOutputStream和ObjectInputStream
查看>>
nagios客户端未启动报错
查看>>
南京大学周志华教授当选欧洲科学院外籍院士
查看>>
《OpenGL ES应用开发实践指南:Android卷》—— 1.3 初始化OpenGL
查看>>
马士兵教学语录
查看>>
计算机网络与Internet应用
查看>>
MongodDB学习笔记(二)(复制)
查看>>
oracle在线迁移同步数据,数据库报错
查看>>
linux性能剖析工具
查看>>
VS2005环境下采用makefile编译、使用libjpeg.lib函数库
查看>>
EBS多语言
查看>>
说说设计模式~ 模版模式(Template)
查看>>
【linux】文件隐藏属性
查看>>
Java 命名规则
查看>>
RTC设备驱动
查看>>
小公司的管理
查看>>
无废话WCF入门教程三[WCF的宿主]
查看>>
iOS手势识别的详细使用(拖动,缩放,旋转,点击,手势依赖,自定义手势)
查看>>
详细解析:如何制作嵌入式Linux文件系统
查看>>