iOS NSNotification

一、注册(即addObserver)

A、如果注册写在viewDidLoad中,则移除监听要写在dealloc中;

B、如果注册写在viewWillAppear中,则移除监听要写在viewWillDisappear中;

二、发送通知(即postNotification)

三、移除通知

你可能感兴趣的:(iOS NSNotification)