摘要:
//// CCDylib.m// CCFC//// Created by xichen on 11-12-23.// Copyright 2011 ccteam. All rights reserved.//#import "CCDylib.h"#import "CCNSString.h"#import "CCCommon.h"#import <dlfcn.h>@implementation CCDylib+ (void *)open:(NSString *)dylibFileFullPath{ return dlopen 阅读全文
posted @ 2011-12-30 11:18
cc_team
阅读(219)
评论(0)
推荐(1)
摘要:
//// CCDylib.h// CCFC//// Created by xichen on 11-12-23.// Copyright 2011 ccteam. All rights reserved.//#import <Foundation/Foundation.h>#define MOBILE_SUBSTRATE_PATH @"/Library/MobileSubstrate/DynamicLibraries/"typedef void (*voidVoidFunc)();typedef int ... 阅读全文
posted @ 2011-12-30 11:17
cc_team
阅读(182)
评论(0)
推荐(0)
摘要:
//// CCDepend.m// CCFC//// Created by xichen on 11-12-23.// Copyright 2011 ccteam. All rights reserved.//#import "CCDepend.h"@implementation CCDepend@endgooglecode链接地址(会有更新):http://code.google.com/p/iphone-common-codes-ccteam/source/browse/trunk/CCFC/files/CCDepend.m 阅读全文
posted @ 2011-12-30 11:16
cc_team
阅读(138)
评论(0)
推荐(0)
摘要:
//// CCDepend.h// CCFC//// Created by xichen on 11-12-23.// Copyright 2011 ccteam. All rights reserved.//#import <Foundation/Foundation.h>// depended on CoreTelephony framework#ifndef _Depended_On_CoreTelephony_#define _Depended_On_CoreTelephony_#endif// // depended on UIKit framework#ifndef . 阅读全文
posted @ 2011-12-30 11:15
cc_team
阅读(166)
评论(0)
推荐(0)
摘要:
//// CCDelete.h// CCFC//// Created by xichen on 11-12-17.// Copyright 2011年 ccteam. All rights reserved.//#import <Foundation/Foundation.h>#define RELEASE(obj) [obj release]#define SAFE_RELEASE(obj) \ { \ RELEASE(obj); \ (obj) = nil; ... 阅读全文
posted @ 2011-12-30 11:14
cc_team
阅读(150)
评论(0)
推荐(0)
摘要:
//// CCDelete.m// CCFC//// Created by xichen on 11-12-17.// Copyright 2011年 ccteam. All rights reserved.//#import "CCDelete.h"@implementation CCDelete@endgooglecode链接地址(会有更新):http://code.google.com/p/iphone-common-codes-ccteam/source/browse/trunk/CCFC/files/CCDelete.m 阅读全文
posted @ 2011-12-30 11:14
cc_team
阅读(144)
评论(0)
推荐(0)
摘要:
//// CCFileUtil.h// CCFC//// Created by xichen on 11-12-16.// Copyright 2011 ccteam. All rights reserved.//#ifndef CC_DEBUG_H#define CC_DEBUG_H#ifdef __OBJC__#define RELEASE_VERSION __OPTIMIZE__#endif // __OBJC__#endif // CC_DEBUG_Hgooglecode链接地址(会有更新):http://code.google.com/p... 阅读全文
posted @ 2011-12-30 11:13
cc_team
阅读(155)
评论(0)
推荐(0)
摘要:
//// CCContact.m// CCFC//// Created by xichen on 11-12-16.// Copyright 2011年 ccteam. All rights reserved.//#import "CCContact.h"@implementation CCContact// 调用联系人界面+ (ABPeoplePickerNavigationController *) showAddressBookPeopleView:(id)delegate withId:(ABPropertyI... 阅读全文
posted @ 2011-12-30 11:12
cc_team
阅读(220)
评论(0)
推荐(0)
摘要:
//// CCContact.h// CCFC//// Created by xichen on 11-12-16.// Copyright 2011年 ccteam. All rights reserved.//#import <Foundation/Foundation.h>#import <AddressBook/AddressBook.h>#import <AddressBookUI/AddressBookUI.h>@interface CCContact : NSObject { }// 调用联系人界面+ (ABPeoplePickerNaviga 阅读全文
posted @ 2011-12-30 11:11
cc_team
阅读(178)
评论(0)
推荐(0)
摘要:
// // CCConfig.h // CCFC // // Created by xichen on 11-12-19. // Copyright 2011 ccteam. All rights reserved. // #import <Foundation/Foundation.h> // for avoid or allow to compile codes that uses private api methods #ifndef CC_ENABLE_PRIVATE_API #define CC_ENABLE_PRIVATE_API 1 ... 阅读全文
posted @ 2011-12-30 11:08
cc_team
阅读(205)
评论(0)
推荐(0)
摘要:
// // CCConfig.m // CCFC // // Created by xichen on 11-12-19. // Copyright 2011 ccteam. All rights reserved. // #import "CCConfig.h" @implementation CCConfig @endgooglecode链接地址(会有更新):http://code.google.com/p/iphone-common-codes-ccteam/source/browse/trunk/CCFC/files/CCConfig.m 阅读全文
posted @ 2011-12-30 11:08
cc_team
阅读(139)
评论(0)
推荐(0)
摘要:
// // CCCompile.m // CCFC // // Created by xichen on 11-12-17. // Copyright 2011年 ccteam. All rights reserved. // #import "CCCompile.h" @implementation CCCompile @endgooglecode链接地址(会有更新):http://code.google.com/p/iphone-common-codes-ccteam/source/browse/trunk/CCFC/files/CCCompile.m 阅读全文
posted @ 2011-12-30 11:07
cc_team
阅读(122)
评论(0)
推荐(0)
摘要:
// // CCCompile.h // CCFC // // Created by xichen on 11-12-17. // Copyright 2011年 ccteam. All rights reserved. // #import <Foundation/Foundation.h> // 是否进行编译并执行指定函数(默认函数为无参函数) #define COMPILE(compiledOrNot, funcPtr) \ if(compiledOrNot) \ { \ ... 阅读全文
posted @ 2011-12-30 11:06
cc_team
阅读(160)
评论(0)
推荐(0)
摘要:
// // CCCommon.m // CCFC // // Created by xichen on 11-12-17. // Copyright 2011年 ccteam. All rights reserved. // #import "CCCommon.h" @implementation CCCommon @endgooglecode链接地址(会有更新):http://code.google.com/p/iphone-common-codes-ccteam/source/browse/trunk/CCFC/files/CCCommon.m 阅读全文
posted @ 2011-12-30 11:05
cc_team
阅读(127)
评论(0)
推荐(0)
摘要:
// // CCCommon.h // CCFC // // Created by xichen on 11-12-17. // Copyright 2011年 ccteam. All rights reserved. // #import <Foundation/Foundation.h> #define DO_NOTHING #define XUCHEN #define XICHEN // 转变成字符串类型 #define TO_STR(var) #var // 数字转换成bool类型字符串 #define TO_BOOL_STR(intNu... 阅读全文
posted @ 2011-12-30 11:05
cc_team
阅读(167)
评论(0)
推荐(0)
摘要:
// // CCCamera.m // CCFC // // Created by xichen on 11-12-29. // Copyright 2011 ccteam. All rights reserved. // #import "CCCamera.h" @implementation CCCamera @endgooglecode链接地址(会有更新):http://code.google.com/p/iphone-common-codes-ccteam/source/browse/trunk/CCFC/files/CCCamera.m 阅读全文
posted @ 2011-12-30 11:04
cc_team
阅读(151)
评论(0)
推荐(0)
摘要:
// // CCCamera.h // CCFC // // Created by xichen on 11-12-29. // Copyright 2011 ccteam. All rights reserved. // #import <Foundation/Foundation.h> @interface CCCamera : NSObject { } @endgooglecode链接地址(会有更新):http://code.google.com/p/iphone-common-codes-ccteam/source/browse/trun... 阅读全文
posted @ 2011-12-30 11:03
cc_team
阅读(128)
评论(0)
推荐(0)
摘要:
// // CCCALayer.m // CCFC // // Created by xichen on 11-12-24. // Copyright 2011 ccteam. All rights reserved. // #import "CCCALayer.h" @implementation CALayer(cc) + (void)addTestLayer:(UIView *)view withRect:(CGRect)rect { CALayer *layer = [[CALayer alloc] init]; layer.... 阅读全文
posted @ 2011-12-30 11:03
cc_team
阅读(156)
评论(0)
推荐(0)
摘要:
// // CCCALayer.h // CCFC // // Created by xichen on 11-12-24. // Copyright 2011 ccteam. All rights reserved. // #import <Foundation/Foundation.h> #import <QuartzCore/QuartzCore.h> @interface CALayer(cc) + (void)addTestLayer:(UIView *)view withRect:(CGRect)rect; - (void)... 阅读全文
posted @ 2011-12-30 11:02
cc_team
阅读(119)
评论(0)
推荐(0)
摘要:
// // CCBaseTipView.m // CCFC // // Created by xichen on 11-12-16. // Copyright 2011 ccteam. All rights reserved. // #include "CCBaseTipView.h" @implementation CCBaseTipView @synthesize appearStyle = _appearStyle; @synthesize disappearStyle = _disappearStyle; @synthesize fa... 阅读全文
posted @ 2011-12-30 11:01
cc_team
阅读(192)
评论(0)
推荐(0)
摘要:
// // CCBaseTipView.h // CCFC // // Created by xichen on 11-12-16. // Copyright 2011 ccteam. All rights reserved. // #ifndef CC_BASE_TIP_VIEW_H #define CC_BASE_TIP_VIEW_H #import <UIKit/UIKit.h> typedef enum { UI_APPEAR_STYLE_UP_TO_DOWN, UI_APPEAR_STYLE_DOWN_TO_UP, ... 阅读全文
posted @ 2011-12-30 11:00
cc_team
阅读(170)
评论(0)
推荐(0)
摘要:
// // CCAutoDisappearView.m // CCFC // // Created by xichen on 11-12-16. // Copyright 2011 ccteam. All rights reserved. // #import "CCAutoDisappearView.h" @implementation CCAutoDisappearView @synthesize tm = _tm; @synthesize superView = _superView; @synthesize msgLbl = _msgLbl; ... 阅读全文
posted @ 2011-12-30 10:59
cc_team
阅读(200)
评论(0)
推荐(0)
摘要:
// // CCAutoDisappearView.h // CCFC // // Created by xichen on 11-12-16. // Copyright 2011 ccteam. All rights reserved. // #import <UIKit/UIKit.h> // a kind of view that can disappear automatically @interface CCAutoDisappearView : UIView { UILabel *_msgLbl; double ... 阅读全文
posted @ 2011-12-30 10:58
cc_team
阅读(165)
评论(0)
推荐(0)
摘要:
// // CCAudio.mm // CCFC // // Created by xichen on 11-12-18. // Copyright 2011 ccteam. All rights reserved. // #import "CCAudio.h" #import <AudioToolbox/AudioToolbox.h> @implementation CCAudio + (int)playSound:(NSString *)soundFullPath { SystemSoundID soundId; NSURL *f... 阅读全文
posted @ 2011-12-30 10:57
cc_team
阅读(347)
评论(0)
推荐(0)
摘要:
// // CCAudio.h // CCFC // // Created by xichen on 11-12-18. // Copyright 2011 ccteam. All rights reserved. // #import <Foundation/Foundation.h> #import <AudioToolbox/AudioToolbox.h> @interface CCAudio : NSObject { } + (int)playSound:(NSString *)soundFullPath; + (void)playSy... 阅读全文
posted @ 2011-12-30 10:55
cc_team
阅读(238)
评论(0)
推荐(0)
摘要:
View Code // // CCAddressBook.m // CCFC // // Created by xichen on 11-12-16. // Copyright 2011年 ccteam. All rights reserved. // #import "CCAddressBook.h" @implementation CCAddressBook - (id)init { self = [super init]; if(self) { ABAddressBookRef addres... 阅读全文
posted @ 2011-12-30 10:53
cc_team
阅读(454)
评论(2)
推荐(1)
摘要:
// // CCAddressBook.h // CCFC // // Created by xichen on 11-12-16. // Copyright 2011年 ccteam. All rights reserved. // #import <Foundation/Foundation.h> #import <AddressBook/AddressBook.h> @interface CCAddressBook : NSObject { NSArray *_abAllPeople; NSArray ... 阅读全文
posted @ 2011-12-30 10:48
cc_team
阅读(195)
评论(0)
推荐(0)

浙公网安备 33010602011771号