上一页 1 ··· 16 17 18 19 20 21 22 23 24 ··· 54 下一页
摘要: 先执行adbnodaemonserver,查看adb server的端口是多少C:\Users\xxxx>adbnodaemonserver cannotbind'tcp:5037'再执行下netstat-ano|findstr"5037"C:\Users\xxxxxx>netstat-ano|fi... 阅读全文
posted @ 2015-05-19 18:20 Master HaKu 阅读(7481) 评论(0) 推荐(0) 编辑
摘要: #include "base/ccMacros.h" 阅读全文
posted @ 2015-05-09 22:56 Master HaKu 阅读(638) 评论(0) 推荐(0) 编辑
摘要: 1. 配置引擎根目录支持C/C++->常规->附加包含目录->增加->$(EngineRoot)2. 引入头文件#include "cocos-ext.h"using namespace cocos2d::extension;3. 测试代码:bool HelloWorld::init(){ i... 阅读全文
posted @ 2015-04-28 20:49 Master HaKu 阅读(795) 评论(0) 推荐(0) 编辑
摘要: 1. 官网下载最新的Boost库,我的是1.552.在使用vs2013编译boost-1.55.0之前,先要给boost做下修改:boost_1_55_0\boost\intrusive\detail\has_member_function_callable_with.hpp line:222tem... 阅读全文
posted @ 2015-04-27 20:15 Master HaKu 阅读(1336) 评论(0) 推荐(0) 编辑
摘要: IntSLList.h//************************ intSLList.h **************************// singly-linked list class to store integers#ifndef INT_LINKE... 阅读全文
posted @ 2015-04-27 18:32 Master HaKu 阅读(821) 评论(0) 推荐(0) 编辑
摘要: 菜单都以MenuItem开头MenuItemLabel - 文本菜单项MenuItemImage - 图片菜单项// on "init" you need to initialize your instancebool HelloWorld::init(){ if (!Layer::init(... 阅读全文
posted @ 2015-04-27 10:57 Master HaKu 阅读(744) 评论(0) 推荐(0) 编辑
摘要: 1. ViewsA view (an object whose class is UIView or a subclass of UIView) knows how to draw itself into a rectangular area of the interface.Your app ha... 阅读全文
posted @ 2015-04-24 09:44 Master HaKu 阅读(943) 评论(0) 推荐(0) 编辑
摘要: 1. 首先,要编写windows下socket程序,必须要加入Winsock支持2. 服务端监听程序(Server.cpp)#include //包含头文件#include#include#pragma comment(lib,"WS2_32.lib")... 阅读全文
posted @ 2015-04-21 13:43 Master HaKu 阅读(329) 评论(0) 推荐(0) 编辑
摘要: 看看下面的程序有什么问题:BNRItem.h@interface BNRItem : NSObject@property (nonatomic, strong) BNRItem *containedItem;@property (nonatomic, strong) BNRItem *contain... 阅读全文
posted @ 2015-04-17 16:39 Master HaKu 阅读(326) 评论(0) 推荐(0) 编辑
摘要: 如题 解决方案如下: 1.先把eclipse关闭.2.在管理器转到你的android SDK 的platform-tools下3.键入adb kill-server ,如果adb关闭了会提示 server not running * 4.再输入 adb start-server 如果不成功会提示 d 阅读全文
posted @ 2015-04-03 17:34 Master HaKu 阅读(303) 评论(0) 推荐(0) 编辑
上一页 1 ··· 16 17 18 19 20 21 22 23 24 ··· 54 下一页