OStack程序员社区-中国程序员成长平台

标题: ios - Objective-C 将 UIControl Event TouchUpInside 事件添加到类 [打印本页]

作者: 菜鸟教程小白    时间: 2022-12-13 03:17
标题: ios - Objective-C 将 UIControl Event TouchUpInside 事件添加到类

我知道可以将 UIControlEventTouchUpInside 事件添加到特定对象,但我如何才能将此事件添加到整个类?

我已经使用 ElementButton 类创建了对象,我不想为每个单独的对象添加事件,因为这会导致大量不必要的代码。



Best Answer-推荐答案


您所指的是 iOS 对称为 target-action pattern 的实现。 Target-action 仅适用于 UIControl 的子类,因此除非您的 ElementButton 是 UIControl 子类,否则您不能使用 UIControlEventTouchUpInside。

如果它实际上是一个 UIControl 子类,你应该不需要做任何额外的工作,除了为每个对象注册 UIControlEventTouchUpInside:

[yourButton addTarget:self selectorselector(buttonTapped forEvent:UIControlEventTouchUpInside];

如果您有任何其他问题,请告诉我。

关于ios - Objective-C 将 UIControl Event TouchUpInside 事件添加到类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18071703/






欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) Powered by Discuz! X3.4