必须先在 EventType.cs 定义事件名
//注册事件
EventCenter.AddListener<string>(EventType.ShowText,ShowText);
//广播
EventCenter.Broadcast(EventType.ShowText,"123456");
//注销事件
EventCenter.RemoveListener<string>(EventType.ShowText,ShowText);
Name | Name | Last commit date | ||
---|---|---|---|---|
parent directory.. | ||||
必须先在 EventType.cs 定义事件名
//注册事件
EventCenter.AddListener<string>(EventType.ShowText,ShowText);
//广播
EventCenter.Broadcast(EventType.ShowText,"123456");
//注销事件
EventCenter.RemoveListener<string>(EventType.ShowText,ShowText);