说如果我有几个:
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(notificationReceived:)
name:NotificationA
object:self.player];
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(notificationReceived:)
name:NotificationB
object:self.player];
这些对象都是self.player
为了不同的通知,最后我做了:
[[NSNotificationCenter defaultCenter] removeObserver:self];
这很好还是我必须使用完整的方法来删除每个通知的观察者?目前我在卸载视图控制器但player
仍在后台播放时遇到问题。
谢谢