对UIButton进行子类化以处理点击次数

时间:2012-08-28 16:24:00

标签: objective-c ios cocoa-touch uibutton

我正在尝试将UIButton子类化以创建一个“更智能”的按钮,其中包含用于处理click事件的逻辑。

实现这一目标的最佳方法是什么?我只需要覆盖onClick方法吗?或者我是否需要注册事件处理程序(如果是这样,应该在哪里查看,因为有很多方法可以启动UIButton?)

1 个答案:

答案 0 :(得分:33)

我认为这个问题比你提出的问题有更好的解决方案,但是直接回答你的问题:UIButton的子类以与其他人观察触摸事件相同的方式观察触摸事件。

// In your UIButton subclass

- (instancetype)initWithFrame:(CGRect)frame {
    self = [super buttonWithType:UIButtonTypeCustom];
    if (self) {
        [self addTarget:self action:@selector(didTouchButton) forControlEvents:UIControlEventTouchUpInside];
    }
    return self;
}

- (void)didTouchButton {
    // do whatever you need to do here
}

重要提示:您无法使用[UIButton buttonWithType:]创建按钮,而必须使用initinitWithFrame:。即使UIButton具有便捷初始值设定项,initWithFrame:仍然是指定的初始值设定项。