gpt4 book ai didi

ios - iPhone 6s 没有接收到 UIButtons 上的任何触摸

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:12:43 26 4
gpt4 key购买 nike

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

最佳答案

If you have used any UIButton Category and Overrides the Touch methods then try adding:

- (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];
}

关于ios - iPhone 6s 没有接收到 UIButtons 上的任何触摸,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35598958/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com