gpt4 book ai didi

ios - UIButtonTypeInfoDark Touch Area

转载 作者:行者123 更新时间:2023-12-01 16:53:35 26 4
gpt4 key购买 nike

我添加了 UIButton类型为 UIButtonTypeInfoDark到一个 View 和它的触摸区域是巨大的。我知道 Apple 推荐 44px,但在这种情况下,它要大一些。我为 View 设置了一个浅灰色背景,以查看 44px 的结束区域在哪里,并且我可以在浅灰色 View 区域之外触摸并仍然收到 infoTapped:事件。

谁能澄清为什么?谢谢!

_infoButton = [UIButton buttonWithType:UIButtonTypeInfoDark];
[_infoButton setShowsTouchWhenHighlighted:NO];
[_infoButton setFrame:CGRectMake(frame.size.width-44, 0, 44, 25)];
[_infoButton setBackgroundColor:[UIColor lightGrayColor]];
[_infoButton addTarget:self action:@selector(infoTapped:) forControlEvents:UIControlEventTouchUpInside];

最佳答案

要解决这个问题很可能需要子类化。您可以覆盖 pointInside:withEvent: UIButton子类化并返回 NO除非严格在按钮的范围内:

- (BOOL)pointInside:(CGPoint)point withEvent:(UIEvent *)event {
return CGRectContainsPoint(self.bounds, point);
}

Apple 控件有时会返回 YES超出范围的查询以使控件更容易用手指触摸。

关于ios - UIButtonTypeInfoDark Touch Area,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13746331/

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