Structure
ExclusiveGesture
A gesture that consists of two gestures where only one of them can succeed.
あるジェスチャ、それは2つのジェスチャから成ります、そこではそれらのただ1つだけが成功できます。
Declaration
宣言
@frozen struct ExclusiveGesture<First, Second> where First : Gesture
, Second : Gesture
Overview
概要
The ExclusiveGesture
gives precedence to its first gesture.
Topics
話題
Creating an Exclusive Gesture
排他的ジェスチャを作成する
init(First, Second)
Creates a gesture from two gestures where only one of them succeeds.
あるジェスチャを2つのジェスチャから作成します、そこではそれらのただ1つだけが成功します。
Supporting Types
支援を行う型
typealias Body
The type of gesture representing the body of Self
.
ジェスチャの型、Self
のボディを表しています。
enum Value
The value of an exclusive gesture that indicates which of two gestures succeeded.
ある排他的ジェスチャの値、それは2つのジェスチャのうちどちらが成功したかを指し示します。
Default Implementations
省略時実装
See Also
参照
Combined Gestures
結合されたジェスチャ
struct SimultaneousGesture
A gesture containing two gestures that can happen at the same time with neither of them preceding the other.