gpt4 book ai didi

iphone - 如何删除观察者

转载 作者:行者123 更新时间:2023-11-28 18:35:57 25 4
gpt4 key购买 nike

我有一个支持 ARC 的项目

viewDidLoad中添加了几个观察者

[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(getSipNotification:) name:@"getSipNotification" object:nil];
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(syncExtensionData:) name:@"syncExtensionData" object:nil];
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(showLocalNotification:) name:@"showLocalNotification" object:nil];
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(outgoingCall:) name:@"outgoingCall" object:nil];
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(playRingtone) name:@"playRingtone" object:nil];

我想删除所有观察者,所以我在 viewDidUnload

中添加了以下行
[[NSNotificationCenter defaultCenter] removeObserver:self];

现在我的问题是,这会移除所有观察者吗?

如果不行怎么办?

更新

如果我想删除单个观察者怎么办?

你能帮帮我吗?

最佳答案

是的,它将移除所有观察者。

 [[NSNotificationCenter defaultCenter] removeObserver:self];

你可以像这样删除一个特定的观察者......

[[NSNotificationCenter defaultCenter] removeObserver:self name:@"syncExtensionData" object:nil];

关于iphone - 如何删除观察者,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19155532/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com