摘要:
// // CCSize.h // CCFC // // Created by xichen on 11-12-28. // Copyright 2011 ccteam. All rights reserved. // #import <Foundation/Foundation.h> @interface CCSize : NSObject { @public CGFloat width; CGFloat height; } - (id)initWithWidth:(CGFloat)width ... 阅读全文
摘要:
// // CCSMS.m // CCFC // // Created by xichen on 11-12-16. // Copyright 2011年 ccteam. All rights reserved. // #import "CCSMS.h" #if CC_ENABLE_PRIVATE_API NSString* const SIMStatusReady = @"kCTSIMSupportSIMStatusReady"; // SIM card is ok NSString* const SIMStatusNotIns... 阅读全文
摘要:
// // CCSMS.h // CCFC // // Created by xichen on 11-12-16. // Copyright 2011年 ccteam. All rights reserved. // #import <Foundation/Foundation.h> #import <MessageUI/MessageUI.h> #import "CCConfig.h" #import "CCDepend.h" #import "CCCommon.h" #if CC_ENABLE_PRIVA 阅读全文
摘要:
// // CCRuntime.m // CCFC // // Created by xichen on 11-12-30. // Copyright 2011 ccteam. All rights reserved. // #import "CCRuntime.h" @implementation CCRuntime // get the var of the obj + (Ivar)getObjVar:(id)obj varname:(const char *)varname ret:(void **)ret { ... 阅读全文