gpt4 book ai didi

ios - 如何在 NSNotification 类中选择一个选择器?

转载 作者:行者123 更新时间:2023-11-28 22:21:21 28 4
gpt4 key购买 nike

keyboard = [[FTKeyboardHelper alloc] init];

我有一个键盘助手类,我想调用 keyboard 中定义的方法 keyboardShow

[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(keyboard.keyboardShow:)
name:UIKeyboardWillShowNotification
object:nil];

但是我收到错误消息 Excepted :有什么建议吗?

最佳答案

关于

[[NSNotificationCenter defaultCenter] addObserver:keyboard
selector:@selector(keyboardShow:)
name:UIKeyboardWillShowNotification
object:nil];

我不确定你可以“.”分离选择器,它不是关键路径。


但我认为那将是糟糕的设计,您可能应该将该代码放在您的助手中。
-init和在-dealloc注销或者使用一对-register-unregister方法来在对象的正常生命周期之外控制它。
但是不要忘记在 helper 被释放之前取消注册,否则,下次键盘出现时你会崩溃。

关于ios - 如何在 NSNotification 类中选择一个选择器?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20313717/

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