gpt4 book ai didi

ios - 如何在 SwiftUI 中实现触发 switch case 的左或右 DragGesture() ?

转载 作者:行者123 更新时间:2023-11-29 05:16:48 25 4
gpt4 key购买 nike

我在 View 中创建了一个 DragGesture,无论用户向左还是向右滑动,它都应该选择 @State(Bool)。

问题是只检测到向右滑动。

如何使用.gesture()来捕获用户在屏幕上向左还是向右滑动?

import SwiftUI

struct SwiftUIView: View {

//MARK: Value to change on swipe gesture
@State var swipeRight: Bool

var body: some View {
VStack {
//MARK: Value displayed after user swiped
Text($swipeRight ? "Right" : "Left")
}
.gesture(
DragGesture()
.onChanged { (value) in
//MARK: What is it missing here?
switch value.location.x {
case ...(-0.5):
self.swipeRight = false
print("Swipe Left return false")
case 0.5...:
self.swipeRight = true
print("Swipe Right return true")
default: ()
}
})
}

最佳答案

Swift 5、iOS 13

[Mojtaba Hosseini][1] 在此提出的改进版本。

[1]:https://stackoverflow.com/users/5623035/mojtaba-hosseini .将枚举和函数放在 ContentView 主体之前。

enum SwipeHVDirection: String {
case left, right, up, down, none
}

func detectDirection(value: DragGesture.Value) -> SwipeHVDirection {
if value.startLocation.x < value.location.x - 24 {
return .left
}
if value.startLocation.x > value.location.x + 24 {
return .right
}
if value.startLocation.y < value.location.y - 24 {
return .down
}
if value.startLocation.y > value.location.y + 24 {
return .up
}
return .none
}

...

在 DragGesture 中调用它。在 onEnded 上调用它以阻止其多次触发。

.gesture(DragGesture()
.onEnded { value in
print("value ",value.translation.width)
let direction = self.detectDirection(value: value)
if direction == .left {
// your code here
}
}
)

显然您需要/可以根据需要添加其他方向...

关于ios - 如何在 SwiftUI 中实现触发 switch case 的左或右 DragGesture() ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59109138/

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