这个工具的主要目的就是记录屏幕上的各种操作,然后多次回放,用于稳定性测试和一些需要多次重复才能复现的bug的重现。
代码在以下位置:
http://download.csdn.net/detail/dfysy/8479123
之前,别人转发我一个记录/回放 event的程序,在KK以前都是可以用的,但是由于Android L enable了PIE(positionindepen...
分类:
移动开发 时间:
2015-03-06 20:50:53
阅读次数:
188
The Death of Cocoa
2015-03-06MatttNSHipster
The Death of Cocoa
Cocoa实际就是Objective-C的标准库,包含了许多用语言编写程序最需要的一些框架,例如 Foundation、AppKit 和 Core Data。而 Cocoa Touch 基本上是用 UIKit 替换 AppKit,而且它与 C...
分类:
移动开发 时间:
2015-03-06 19:16:51
阅读次数:
195
local scheduler = require(cc.PACKAGE_NAME .. ".scheduler")local MainScene = class("MainScene", function() return display.newScene("MainScene")end)f...
分类:
其他好文 时间:
2015-03-06 15:22:59
阅读次数:
117
在调试软件的时候出现如下的错误:01-05 20:53:36.492: E/ZZShip(2043): android.view.ViewRootImpl$CalledFromWrongThreadException: Only the original thread that created a ...
分类:
其他好文 时间:
2015-03-06 10:29:37
阅读次数:
169
af3的变化非常大。参见[译]Intel App Framework 3.0的变化 一、页面引用脚步的变化: af3中不在自己实现dom选择器,而是选择基于jquey或兼容jquery的库如zepto等,touch layer也依靠fastclick。下面就是af3应用的head部分示意代码...
分类:
其他好文 时间:
2015-03-06 01:02:25
阅读次数:
178
1.DispatchTouchEvent
Pass the touch screen motion event down to the target view, or this view if it is the target.
传递触摸事件到目标视图,或者他就是目标视图。
情况1:return true
则事件只...
分类:
其他好文 时间:
2015-03-05 19:29:35
阅读次数:
212
本文转自博文分组密码的几种模式。另外,还可参考另一篇。 介绍最详细的是维基百科条目块密码的工作模式,非常值得推荐。 电子密码本(Electronic Code Book,ECB) 密码块链接(Cipher Block Chaining,CBC) 密码反馈(Cipher Feedback,...
分类:
其他好文 时间:
2015-03-05 16:36:17
阅读次数:
148
//求职Ext.define('app.model.Staff', { extend: 'Ext.data.Model', config: { fields: [{ name: 'id', type: 'int' }...
分类:
其他好文 时间:
2015-03-05 16:08:47
阅读次数:
180
1、新建sh文件
$ touch myls.sh
2、
$vi myls.sh
内容为:
ls
ls -l
3、修改权限
$ sudo chmod myls.sh 775
4、运行
./myls.sh...
分类:
其他好文 时间:
2015-03-05 12:56:45
阅读次数:
119