annie.EventDispatcher Class
事件触发基类
Item Index
Methods
Properties
Methods
addEventListener
(
Void
public
-
type
-
listener
-
useCapture
给对象添加一个侦听
Parameters:
Returns:
Void:
Example:
this.addEventListener(annie.Event.ADD_TO_STAGE,function(e){console.log(this);}.bind(this));
destroy
()
Void
public
销毁一个对象 销毁之前一定要做完其他善后工作,否则有可能会出错 特别注意不能在对象自身方法或事件里调用此方法。 比如,不要在显示对象自身的 annie.Event.ON_REMOVE_TO_STAGE 或者其他类似事件调用,一定会报错
Returns:
Void:
dispatchEvent
(
Boolean
public
-
event
-
data
-
useCapture
广播侦听
Parameters:
-
event
annie.Event | String广播所带的事件对象,如果传的是字符串则自动生成一个annie.Event对象,事件类型就是传入进来的字符串的值
-
data
Object广播后跟着事件一起传过去的其他任信息,默认值为null
-
useCapture
Booleantrue 捕获阶段 false 冒泡阶段 默认 true
Returns:
Boolean:
如果有收听者则返回true
Example:
var mySprite=new annie.Sprite(),
yourEvent=new annie.Event("yourCustomerEvent");
yourEvent.data={a:1,b:2,c:"hello",d:{aa:1,bb:2}};
mySprite.addEventListener("yourCustomerEvent",function(e){
console.log(e.data);
})
mySprite.dispatchEvent(yourEvent);
removeAllEventListener
()
Void
public
移除对象中所有的侦听
Returns:
Void: