Xcode:如何从对象中删除操作?

发布于 2024-12-03 19:41:49 字数 399 浏览 1 评论 0原文

我需要从对象中删除一个操作,然后添加一个新操作。

我已经使用此代码添加了新操作:

[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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

橘味果▽酱 2024-12-10 19:41:49

在这种情况下,一个简单的解决方案是先删除旧操作,然后再添加新操作。即反过来做。

您也可以通过为目标传递 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.

与他有关 2024-12-10 19:41:49

您可以从 UIButton 中删除操作,例如如下所示:

[self.myButton removeTarget:nil action:NULL forControlEvents:UIControlEventAllEvents];

You can remove the action from a UIButton for example like this:

[self.myButton removeTarget:nil action:NULL forControlEvents:UIControlEventAllEvents];
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文