gpt4 book ai didi

swift - 检查是否同时触及不同的 View

转载 作者:行者123 更新时间:2023-11-30 10:01:37 25 4
gpt4 key购买 nike

我的 ViewController 上几乎没有 UIView我如何检查现在是否所有内容都已触摸?它们被放置在屏幕的不同侧面,并且必须用分开的手指触摸它们

最佳答案

使用touchesEnded委托(delegate)

override func touchesEnded(touches: Set<UITouch>, withEvent event: UIEvent?) {
startTouchPosition = touches.first?.locationInView(self)
let touch = touches.first
if let touchPoint = touch?.locationInView(self){
for view in self.views{
if(view.containsPoint(touchPoint)){

}
}
}
}

关于swift - 检查是否同时触及不同的 View ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38199698/

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