gpt4 book ai didi

ios - 为什么只显示正确的手势?

转载 作者:塔克拉玛干 更新时间:2023-11-02 09:43:50 26 4
gpt4 key购买 nike

我从来没有用过手势,写了这段代码(注:我用的是Xamarin和iOS)。

当我使用下面的代码时,收到的唯一值是“正确”,尽管我在模拟器或我的实际 iPhone 上做了什么。我不知道为什么。我想我要么一无所获,要么一切正常。

// Swipe gesture
this.View.AddGestureRecognizer(new UISwipeGestureRecognizer(sw =>
{
if (sw.Direction == UISwipeGestureRecognizerDirection.Left) {
txtTestLabel.Text = "Left";
}
else if (sw.Direction == UISwipeGestureRecognizerDirection.Right) {
txtTestLabel.Text = "Right";
}
else {
txtTestLabel.Text = sw.Direction.ToString();
}
}));

最佳答案

UISwipeGestureRecognizer 的默认方向是正确的(参见 documentation)。将 direction 属性设置为 left 以跟踪向左滑动。

关于ios - 为什么只显示正确的手势?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22053433/

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