上一页 1 ··· 11 12 13 14 15 16 17 18 19 ··· 21 下一页
摘要: //// 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)printRetainCou 阅读全文
posted @ 2012-01-01 11:39 cc_team 阅读(137) 评论(0) 推荐(0) 编辑
摘要: //// CCMemory.m// CCFC//// Created by xichen on 11-12-23.// Copyright 2011 ccteam. All rights reserved.//#import "CCMemory.h"@implementation CCMemory// get the info of memory+ (BOOL)getMemoryInfo:(vm_statistics_data_t *)vmStats{ mach_msg_type_number_t infoCount = HOST_VM_INFO_COUNT; ... 阅读全文
posted @ 2012-01-01 11:37 cc_team 阅读(190) 评论(0) 推荐(0) 编辑
摘要: //// CCMemory.h// CCFC//// Created by xichen on 11-12-23.// Copyright 2011 ccteam. All rights reserved.//#import <Foundation/Foundation.h>#import <mach/mach.h>@interface CCMemory : NSObject {}// get the info of memory+ (BOOL)getMemoryInfo:(vm_statistics_data_t *)vmStats;@end可能有更新: google 阅读全文
posted @ 2012-01-01 11:35 cc_team 阅读(159) 评论(0) 推荐(0) 编辑
摘要: //// CCMapAnnotation.m// CCFC//// Created by xichen on 11-12-30.// Copyright 2011 ccteam. All rights reserved.//#import "CCMapAnnotation.h"#import "CCCommon.h"@implementation CCMapAnnotation@synthesize title = _title;@synthesize subtitle = _subtitle;@synthesize coordinate = _cord 阅读全文
posted @ 2012-01-01 11:33 cc_team 阅读(403) 评论(2) 推荐(1) 编辑
摘要: //// CCMapAnnotation.h// CCFC//// Created by xichen on 11-12-30.// Copyright 2011 ccteam. All rights reserved.//#import <Foundation/Foundation.h>#import <MapKit/MKAnnotation.h>@interface CCMapAnnotation : NSObject<MKAnnotation> { NSString *_title; NSString *_subtitle; ... 阅读全文
posted @ 2011-12-31 10:08 cc_team 阅读(170) 评论(0) 推荐(0) 编辑
摘要: //// CCMail.m// CCFC//// Created by xichen on 11-12-16.// Copyright 2011年 ccteam. All rights reserved.//#import "CCMail.h"#import "CCNSPredicate.h"@implementation CCMail// 调用系统mail界面+ (MFMailComposeViewController *)showMailView:(id)delegate withRecipients:(NSArray *... 阅读全文
posted @ 2011-12-31 10:07 cc_team 阅读(257) 评论(0) 推荐(0) 编辑
摘要: //// CCMail.h// CCFC//// Created by xichen on 11-12-16.// Copyright 2011年 ccteam. All rights reserved.//#import <Foundation/Foundation.h>#import <MessageUI/MFMailComposeViewController.h>@interface CCMail : NSObject { }// 调用系统mail界面+ (MFMailComposeViewController *)showMailView:(id)delegat 阅读全文
posted @ 2011-12-31 10:06 cc_team 阅读(163) 评论(0) 推荐(0) 编辑
摘要: //// CCLog.m// CCFC//// Created by xichen on 11-12-17.// Copyright 2011年 ccteam. All rights reserved.//#import "CCLog.h"@implementation CCLog+ (void)logDetail:(NSString *)str{ NSLog(@"filename: %s line: %d %@", __FILE__, __LINE__, (str));}@endgooglecode链接地址(会有更新):http://code.goog 阅读全文
posted @ 2011-12-31 10:05 cc_team 阅读(114) 评论(0) 推荐(0) 编辑
摘要: //// CCLog.h// CCFC//// Created by xichen on 11-12-17.// Copyright 2011年 ccteam. All rights reserved.//#import <Foundation/Foundation.h>#import "CCUIView.h"#import "CCCommon.h"#define C_LOG(cStr, ...) printf(cStr, ##__VA_ARGS__)#define C_LOG_ENDL(cStr, ...) print... 阅读全文
posted @ 2011-12-31 10:04 cc_team 阅读(192) 评论(0) 推荐(0) 编辑
摘要: //// CCLanguage.m// CCFC//// Created by xichen on 11-12-16.// Copyright 2011年 ccteam. All rights reserved.//#import "CCLanguage.h"@implementation CCLanguage// 获取系统当前使用的本地化语言+ (NSString *)getSystemLanguage{ NSUserDefaults *defs = [NSUserDefaults standardUserDefaults]; NSArray *languages = [ 阅读全文
posted @ 2011-12-31 10:04 cc_team 阅读(247) 评论(0) 推荐(0) 编辑
上一页 1 ··· 11 12 13 14 15 16 17 18 19 ··· 21 下一页