gpt4 book ai didi

iOS 按钮可见,不可点击

转载 作者:行者123 更新时间:2023-11-28 21:06:48 28 4
gpt4 key购买 nike

我的 Storyboard中有一个 View ,默认情况下 alpha 设置为 0。在某些情况下,Swift 文件将 alpha 设置为 1。所以要么隐藏,要么不隐藏。在此 View 之前只包含 2 个标签。我正在尝试向 View 添加 2 个按钮。

由于某些原因,按钮根本不可点击。因此,当您正常点击它时,按钮会在您释放之前或按住按钮时稍微改变颜色。但是由于某种原因并没有发生这种行为,并且根本没有调用连接到按钮的函数。

这似乎是一个重叠或位于按钮顶部的问题。该按钮是完全可见和启用的,除了不可点击之外的所有内容。我尝试了 Debug View Hierarchy 但在该 View 中一切看起来都是正确的。

知道为什么会发生这种情况吗?

编辑 我尝试使用以下代码创建一个类,并在界面生成器中将容器 View 设置为该类。

class AnotherView: UIView {
override func point(inside point: CGPoint, with event: UIEvent?) -> Bool {
for view in self.subviews {
if view.isUserInteractionEnabled, view.point(inside: self.convert(point, to: view), with: event) {
return true
}
}

return false
}
}

最佳答案

使用hitTest(_:with:) method .当我们调用 super.hitTest(point, with: event) 时,super 调用返回 nil,因为用户交互被禁用。因此,我们检查触摸点是否在 UIButton 上,如果是,则我们可以返回 UIButton 对象。这会将消息发送到 UIButton 对象的选择器。

class AnotherView: UIView {

@IBOutlet weak var button:UIButton!

override func hitTest(_ point: CGPoint, with event: UIEvent?) -> UIView? {
let view = super.hitTest(point, with: event)
if self.button.frame.contains(point) {
return button
}
return view
}

@IBAction func buttnTapped(sender:UIButton) {

}
}

关于iOS 按钮可见,不可点击,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45391926/

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