摘要:
在Xcode 6 beta里编译Cocos2d-x iOS项目时可能会失败,提示如下错误:Undefined symbols for architecture i386:"_fwrite$UNIX2003", referenced from: _unixErrorHandler in libcoco... 阅读全文
摘要:
using System;public static class GreaterTest{ public static of( left, right) {) .MakeGenericType(type).IsAssignableFrom(intf) || ... 阅读全文
摘要:
我们在写一些Model的时候,经常会重写ToString,为了在控制台中进行打印或者更好的单元测试。但是,如果Model的字段非常多的时候,如此简单的重复劳动经常会变成一件令人头痛的事情,因为大家都不想重复劳动,或者这种事情应该交给初级程序员或者毕业生去做。看如下:public class Cust... 阅读全文
摘要:
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.... 阅读全文
摘要:
1. 首先在javascript中加入相关代码$('.content .saveCode').on('touchstart', function () {//touchstart if (temp == 0) { jump(); } i... 阅读全文
摘要:
1. 首先定义好一个类,专们用于给javascript调用public class JavaScriptInterface { // share your news public void share(String newsImageUrl, String newsTitle, Stri... 阅读全文
摘要:
代码:/*去掉iphone手机滑动默认行为*/$('body').on('touchmove', function (event) { event.preventDefault();}); 阅读全文
摘要:
1. 画矩形和写字 2. 射线渐变 3. 居中文字 4. 图片 5. 画布中的画布 阅读全文
摘要:
计算一个向量的值var vectorMagnitude = Math.sqrt(Math.pow(vector.x, 2) +Math.pow(vector.y, 2));单位向量var vectorMagnitude = Math.sqrt(Math.pow(vector.x, 2) +Math.... 阅读全文
摘要:
Cocoa is a dynamically typed language, and you can easily get confused about what type you are working with.Collections (arrays, dictionaries, and so ... 阅读全文