转自:http://hi.baidu.com/andida591/item/05fcace07efae8f42a09a4fa
今天小看了下cocos2d 不是据说很牛的技术 是却是很牛的技术,看了几个牛人的帖子,遇到了点问题,这里记录下。
在编译这个的时候,出现了如标题中的错误
+ (id) layerWithColor:(ccColor4B)color
{
return [[[self alloc] initWithColor:color] autorelease];
}
刚开始是搜索的错误,找了一大堆的英文的解决办法,包括那个大名鼎鼎的啥米溢出论坛,但是没结果,后来看到这个论坛的朋友给出了结果,觉得还是同胞亲哪。
http://www.ityran.com/thread-273-1-1.html
11L大神给出了解决办法
我是在[self alloc]前面加上(ColorLayer*),如下:
+ (id) layerWithColor:(ccColor4B)color
{
return [[(ColorLayer*)[self alloc] initWithColor:color] autorelease];
}
在新版本的cocos2d中ColorLayer更新为CCColorLayer了或者是CCLayerColor,两者是一样的。12L大神也给出了原理的解析
1、不是ios5放入问题,是cocos2d-1.x版本的问题;
2、ccColor4B在cocos2d-1.x的方法也有改动。
========================================================
转自:http://blog.csdn.net/wylike/article/details/7560439
Sending 'ccColor4B' (aka 'struct_ccColor4B') to parameter of incompatible type 'CIColor *'
在报错的地方作如下改变:
+ (id) layerWithColor:(ccColor4B)color
{
return [[(CCColorLayer*)[self alloc] initWithColor:color] autorelease];
//return [[[self alloc] initWithColor:color] autorelease];
}
编译通过,嘎嘎!
分享到:
相关推荐
Interfacing_ESP32_with_ADS1299_and_sending_the_dat_ESP32-ADS1299
【信息安全与数据安全:应对机器无法处理的威胁】 在当今的数字时代,信息安全与数据安全已经成为企业生存和发展的重要基石。随着大数据的崛起和法律法规的不断完善,企业必须加强自身的安全建设,以抵御日益复杂的...
在"Smtp.zip_Sending SMTP mail_pop_set SMTP"这个主题中,我们可以深入探讨以下几个关键知识点: 1. **SMTP邮件发送**:SMTP协议是互联网上标准的邮件传输协议。使用SMTP,你可以编写程序来发送邮件,包括主收件人...
This delphi 7 source code have a function to send SMS trough computer with serial communication. You can modify it for your requirement.
### Oracle 10g 提示 java.lang.Exception: Exception in sending Request :: null 解决方案 在使用Oracle 10g的过程中,部分用户可能会遇到一个特定的问题:在登录企业管理器(Enterprise Manager, EM)时,系统会...
typedef struct _AppBarData { // abd DWORD cbSize; // sizeof(APPBARDATA) HWND hWnd; // handle of appbar UINT uCallbackMessage; // see below UINT uEdge; // see below RECT rc; // see below ...
自述 从 Rails 应用程序发送邮件的简单应用程序。 应用程序使用以下内容: 行动邮件 使用 Gmail 和 Mailgun 的 SMTP Mailgun API 通过 mailgun-ruby 用于预览电子邮件的 Action Mailer Preview。
Corrected MessageSend function to only access required data for sending. EMAC: Corrected __MEMORY_AT(x) define to be compliant with Arm Compiler 6. Corrected: ETH DMA initialization moved to enable of...
3. 固定短语理解:"Somehow this seems to Koreans to be _______",此处表达的是“不合时宜”或“不协调”的意思,因此正确答案是"out of place"。 4. 情态动词的使用:"The hotline ________ be very busy", 这里...
警报库 用于为各种平台发送警报的库 用法 电子邮件 from alertlib import send_to_email ## mandrill_login = [mandrill_login, ...# when sending to user then send_to must start with '@' # when sending to
然而,一些用户在尝试一键boot时可能会遇到“sending boot FAILED”这样的错误,导致刷机过程无法正常进行,窗口瞬间关闭。这通常是由于设备与计算机之间的通信问题,或者是bootloader加载失败所引起的。 为了解决...
IT is a small program which illustrate the concept of sending the file to a remote destination.The concept given in this program is purely for the beginners who just needs to understand the concept ...
本文将详细解释ffmpeg H264解码slice的decode_mb_cavlc函数参数,包括mb_skip_run、mb_field_decoding_flag、mb_type、i_mb_type_info、b_mb_type_info、p_mb_type_info、cbp等参数的意义和作用。 decode_mb_cavlc...
《Python邮件发送库mail_sending_program详解》 Python作为一种强大且易学的编程语言,在开发领域广泛应用,尤其在后端开发中,Python以其丰富的库资源备受青睐。在众多的Python库中,`mail_sending_program-1.3-py...
Corrected MessageSend function to only access required data for sending. Corrected abort message send functionality. I2C: Corrected pin configuration: MX_I2Cx_SMBA_GPIO_PuPdOD replaced with MX_I2Cx_...
synchronous_capturing_and_sending.py
c++ wince sdk AI <br>smartphone版本 和windows版本 <br>目录 Table of content I. Introduction....................................................................................................
Document for project manage
If you want to get rid of this dialog box, then you will have to use Extended MAPI instead of simple MAPI. Here is the method CTestEmailDlg::OnSend method, which is used to pass the user ...
题目中 "I used to ______letters to my pen pals, but now I’m used to______ e-mails to them.","used to" 表示过去常常做某事,后面接动词原形;而 "be used to" 表示习惯于做某事,后面接动名词形式。所以...