//
// CCPlistFileWritter.h
// CCFC
//
// Created by xichen on 11-12-18.
// Copyright 2011 ccteam. All rights reserved.
//
#import <Foundation/Foundation.h>
#import "CCPlistFileReader.h"
@interface CCPlistFileWritter : CCPlistFileReader
{
id _writterObj;
}
// for NSDictionary
- (void)removeObjectForKey:(id)key;
- (void)setObject:(id)object forKey:(id)key;
// for NSArray
- (void)addObject:(id)anObject;
- (void)insertObject:(id)anObject atIndex:(NSUInteger)index;
- (void)removeLastObject;
- (void)removeObjectAtIndex:(NSUInteger)index;
- (void)replaceObjectAtIndex:(NSUInteger)index withObject:(id)anObject;
@end
可能有更新:
googlecode链接地址:http://code.google.com/p/iphone-common-codes-ccteam/source/browse/trunk/CCFC/files/CCPlistFileWritter.h
github地址: https://github.com/cxsjabc/iphone-common-codes-ccteam/tree/master/CCFC/files/CCPlistFileWritter.h
本文详细介绍了CCPlistFileWritter类的功能和使用方法,包括如何通过该类实现对NSDictionary和NSArray的增删改操作。

被折叠的 条评论
为什么被折叠?



