iPhone 6s在UIButton上没有任何接触

时间:2016-02-24 10:04:46

标签: ios objective-c uibutton xcode7 iphone-6-plus

我的应用程序适用于除iPhone 6s之外的所有设备。当用户试图点击按钮时没有任何反应。我检查了按钮框架,一切都是正确的,但当用户点击按钮时仍然没有任何反应。我认为这与触摸有关。任何形式的帮助将不胜感激。感谢。

1 个答案:

答案 0 :(得分:1)

  

如果您使用过任何UIButton类别并覆盖Touch方法   然后尝试添加:

- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event
{
        [super touchesBegan:touches withEvent:event];
}


- (void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event
{
        [super touchesMoved:touches withEvent:event];
}

-(void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event
{
        [super touchesEnded:touches withEvent:event];
}