README
订阅
componentWillMount(){
this._notifyList = new Array();
this._notifyList.push(APLNotificationCenter.getInstance().subscribe('mykey', (info)=>{
console.log(info);
}));
}
componentWillUnmount(){
this._notifyList.forEach((notifyItem)=>{
APLNotificationCenter.getInstance().remove(notifyItem);
});
}
发布
APLNotificationCenter.getInstance().publish('mykey' {
text:'发布的消息'
});