调用设置为 UIButton 上目标的方法

发布于 2024-10-04 05:57:08 字数 349 浏览 1 评论 0原文

如果我有一个设置了目标的 UIButton,有没有办法在不显式调用它的情况下调用此方法?

例如:

[newViewController.button addTarget:self action:@selector(MyMethod) forControlEvents:UIControlEventTouchUpInside];

然后我希望在 newViewController 中调用此方法,但不能,因为 MyMethod 属于父视图。所以我真的希望能够说,只需调用 UIButton 按钮上的方法/目标即可。但我该怎么做呢?

谢谢

If I have a UIButton which has a target set, is there a way to call this method without explicitly calling it?

For example:

[newViewController.button addTarget:self action:@selector(MyMethod) forControlEvents:UIControlEventTouchUpInside];

I'm then looking to call this method in newViewController but cannot as MyMethod belongs to the parent view. So I really want to be able to say, just call the method/target on the UIButton button. But how can I do this?

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

情释 2024-10-11 05:57:08

刚刚知道如何做到这一点。很简单,现在感觉像个菜鸟一样问!

[button sendActionsForControlEvents:UIControlEventTouchUpInside];

Just found out how to do this. Was pretty easy, feel like a noob asking now!

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