我已经能够检测到用户是否正在触摸屏幕的左侧或右侧,然后执行某项功能。我试图检测是否同时触摸屏幕的两侧,如果是,则执行其他功能。
当我同时触摸屏幕的两侧时,这就是我所做的工作。
这是在更新功能中。
if (touched) {
var isRight : Bool = false
var isLeft : Bool = false
if(location.x < 0){
isLeft = true
moveLeft()
}
else if(location.x > 0){
isRight = true
moveRight()
}
else if (isRight && isLeft){
moveUp()
}
}
答案 0 :(得分:0)
使用此函数获取一组触摸位置ant以测试它们的位置是否为(左和右)
override func touchesBegan(_ touches: Set<UITouch>, with event: UIEvent?) {
if touches.count == 2 {
// 2 touches so we got 2 positions
let tch_1 = touches[touches.startIndex].location(in: self.view)
let tch_2 = touches[touches.endIndex].location(in: self.view)
if (tch_1.x < self.view.frame.size.width / 2 && tch_2.x >= self.view.frame.size.width / 2) || (tch_2.x < self.view.frame.size.width / 2 && tch_1.x >= self.view.frame.size.width / 2) {
//touch detected in both left and right side of screen simultaneously
}
}
}
答案 1 :(得分:0)
以下检查触摸侧的所有触摸并将联合值构建为整数值,然后可以使用switch语句检查:
struct Sides : OptionSet {
let rawValue: Int
static let left = Sides(rawValue:1)
static let right = Sides(rawValue:2)
static let both : Sides = [.left, .right]
static let none : Sides = []
}
override func touchesBegan(_ touches: Set<UITouch>, with event: UIEvent?) {
// Get sides touched
let touched = touches.map { return $0.location(in: view) }.reduce(Sides.none) {
if $1.x < 0 {
return [ $0, Sides.left ]
}
else if $1.x > 0 {
return [ $0, Sides.right ]
}
else {
return $0
}
}
switch(touched) {
case Sides.left:
// handle left
break
case Sides.right:
// handle right
break
case Sides.both:
// handle both
break
case Sides.none:
fallthrough
default:
// none
break
}
}
答案 2 :(得分:-1)
我没有时间编写代码(我现在正打电话 - 如果您发布所有功能,它会有所帮助)。基本上你应该得到一个触摸数组作为参数。你可以迭代它们并打开标志:触摸右/左侧。然后根据标志
调用函数