上一页 1 ··· 18 19 20 21 22 23 24 25 26 ··· 54 下一页
摘要: 在Xcode 6 beta里编译Cocos2d-x iOS项目时可能会失败,提示如下错误:Undefined symbols for architecture i386:"_fwrite$UNIX2003", referenced from: _unixErrorHandler in libcoco... 阅读全文
posted @ 2014-10-25 13:09 Master HaKu 阅读(1817) 评论(0) 推荐(0) 编辑
摘要: using System;public static class GreaterTest{ public static of( left, right) {) .MakeGenericType(type).IsAssignableFrom(intf) || ... 阅读全文
posted @ 2014-09-28 17:00 Master HaKu 阅读(333) 评论(0) 推荐(0) 编辑
摘要: 我们在写一些Model的时候,经常会重写ToString,为了在控制台中进行打印或者更好的单元测试。但是,如果Model的字段非常多的时候,如此简单的重复劳动经常会变成一件令人头痛的事情,因为大家都不想重复劳动,或者这种事情应该交给初级程序员或者毕业生去做。看如下:public class Cust... 阅读全文
posted @ 2014-09-28 11:35 Master HaKu 阅读(1431) 评论(1) 推荐(1) 编辑
摘要: var query = from ll in proListRequestList group ll by new {ll.pro_id} into g select new ProListRequest { pro_id = g.Key.pro_id, number = g.Sum(x => x.... 阅读全文
posted @ 2014-09-23 20:30 Master HaKu 阅读(139) 评论(0) 推荐(0) 编辑
摘要: 1. 首先在javascript中加入相关代码$('.content .saveCode').on('touchstart', function () {//touchstart if (temp == 0) { jump(); } i... 阅读全文
posted @ 2014-09-02 16:32 Master HaKu 阅读(4265) 评论(0) 推荐(0) 编辑
摘要: 1. 首先定义好一个类,专们用于给javascript调用public class JavaScriptInterface { // share your news public void share(String newsImageUrl, String newsTitle, Stri... 阅读全文
posted @ 2014-09-02 10:31 Master HaKu 阅读(325) 评论(0) 推荐(0) 编辑
摘要: 代码:/*去掉iphone手机滑动默认行为*/$('body').on('touchmove', function (event) { event.preventDefault();}); 阅读全文
posted @ 2014-08-27 10:30 Master HaKu 阅读(24837) 评论(1) 推荐(0) 编辑
摘要: 1. 画矩形和写字 2. 射线渐变 3. 居中文字 4. 图片 5. 画布中的画布 阅读全文
posted @ 2014-08-15 11:52 Master HaKu 阅读(469) 评论(0) 推荐(0) 编辑
摘要: 计算一个向量的值var vectorMagnitude = Math.sqrt(Math.pow(vector.x, 2) +Math.pow(vector.y, 2));单位向量var vectorMagnitude = Math.sqrt(Math.pow(vector.x, 2) +Math.... 阅读全文
posted @ 2014-08-15 11:01 Master HaKu 阅读(324) 评论(0) 推荐(0) 编辑
摘要: Cocoa is a dynamically typed language, and you can easily get confused about what type you are working with.Collections (arrays, dictionaries, and so ... 阅读全文
posted @ 2014-08-14 16:20 Master HaKu 阅读(236) 评论(0) 推荐(0) 编辑
上一页 1 ··· 18 19 20 21 22 23 24 25 26 ··· 54 下一页