iphone-common-codes-ccteam源代码 CCNSArray.h
生活随笔
收集整理的這篇文章主要介紹了
iphone-common-codes-ccteam源代码 CCNSArray.h
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
//
// CCNSArray.h
// CCFC
//
// Created by xichen on 11-12-17.
// Copyright 2011年 ccteam. All rights reserved.
//
#import <Foundation/Foundation.h>
@interface NSArray(cc)
// 判斷一個對象指針(不是對象的值)是否在數組中存在
- (BOOL)isPointerExistsInArray:(id)element;
// print the retainCount of each element
- (void)printRetainCountOfEach;
// deep copy, you should release the return value outside // not ok
- (NSMutableArray *)deepCopy;
// print all the element's address
- (void)printAllElementAddr;
@end
@interface NSMutableArray(cc)
// add a null element
- (void)addNull;
@end
// CCNSArray.h
// CCFC
//
// Created by xichen on 11-12-17.
// Copyright 2011年 ccteam. All rights reserved.
//
#import <Foundation/Foundation.h>
@interface NSArray(cc)
// 判斷一個對象指針(不是對象的值)是否在數組中存在
- (BOOL)isPointerExistsInArray:(id)element;
// print the retainCount of each element
- (void)printRetainCountOfEach;
// deep copy, you should release the return value outside // not ok
- (NSMutableArray *)deepCopy;
// print all the element's address
- (void)printAllElementAddr;
@end
@interface NSMutableArray(cc)
// add a null element
- (void)addNull;
@end
?
可能有更新:
googlecode鏈接地址:http://code.google.com/p/iphone-common-codes-ccteam/source/browse/trunk/CCFC/files/CCNSArray.h
github地址: https://github.com/cxsjabc/iphone-common-codes-ccteam/tree/master/CCFC/files/CCNSArray.h
?
轉載于:https://www.cnblogs.com/ccteam/archive/2012/01/01/2309354.html
總結
以上是生活随笔為你收集整理的iphone-common-codes-ccteam源代码 CCNSArray.h的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: ubuntu 12.04 nginx+
- 下一篇: (翻译)Tricks of the wi