在我的程序中,我有一个 UIButton 以编程方式声明为UIVIewController
. 我已将其设置为在用户触发touchUpInside
事件时发送操作,如下所示:
[restartButton addTarget:self action:@selector(handleRestart) forControlEvents:UIControlEventTouchUpInside];
restartButton
的名字在
哪里UIButton
。
当我输入UIControlEventTouchDown
参数forControlEvents
时,它工作正常。但是,UIControlEventTouchUpInside
根本行不通。有人知道这是为什么吗?