答案 0 :(得分:0)
我能够通过向按钮添加UITapGestureRecognizer并将目标设置为运行IBAction将具有的代码来解决这个奇怪的问题。
UITapGestureRecognizer *tapOne = [[UITapGestureRecognizer alloc]initWithTarget:self action:@selector(buttonOneTapped)];
[one addGestureRecognizer:tapOne];
然后确保断开IBAction链接与故事板。现在它收到了我需要的快速水龙头。 我认为这与我在按钮上应用半径的事实有关。还是不确定。