Xcode:如何从对象中删除操作?
我需要从对象中删除一个操作,然后添加一个新操作。
我已经使用此代码添加了新操作:
[Button addTarget:self action:@selector(newAction:) forControlEvents:UIControlEventTouchUpInside];
然后我尝试使用此代码来删除旧操作:
[Button removeTarget:self action:@selector(oldAction:) forControlEvents:UIControlEventTouchUpInside];
问题是它以某种方式也删除了 newAction。
有什么想法吗?
提前致谢 :)
I need to remove an action from a object and then add a new one.
I've used this code to add the new action:
[Button addTarget:self action:@selector(newAction:) forControlEvents:UIControlEventTouchUpInside];
I've then tried to use this code to remove the old action:
[Button removeTarget:self action:@selector(oldAction:) forControlEvents:UIControlEventTouchUpInside];
The problem is that it somehow also removes the newAction.
Any ideas?
Thanks in advance :)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在这种情况下,一个简单的解决方案是先删除旧操作,然后再添加新操作。即反过来做。
您也可以通过为目标传递
nil
来删除所有操作。In that case, a simple solution is to instead remove the old action first before adding the new one. i.e. do it the other way around.
You can remove all actions by passing
nil
for target too.您可以从 UIButton 中删除操作,例如如下所示:
You can remove the action from a UIButton for example like this: