Structure
SimultaneousGesture
A gesture containing two gestures that can happen at the same time with neither of them preceding the other.
Declaration
宣言
@frozen struct SimultaneousGesture<First, Second> where First : Gesture
, Second : Gesture
Overview
概要
A simultaneous gesture is a container-event handler that evaluates its two child gestures at the same time. Its value is a struct with two optional values, each representing the phases of one of the two gestures.
ある同時ジェスチャは、コンテナイベントハンドラです、それはそれの2つの子ジェスチャを同時に評価します。それの値は、2つのオプショナル値をもつstructです、それぞれは2つのジェスチャの1つのうちの様相を表しています。
Topics
話題
Creating a Simultaneous Gesture
ある同時のジェスチャを作成する
init(First, Second)
Creates a gesture with two gestures that can receive updates or succeed independently of each other.
あるジェスチャを2つのジェスチャで作成します、それらは更新または成功を別々に受け取ることができます。
var first: First
The first of two gestures that can happen simultaneously.
同時に起こることが可能な2つのゼスチャの最初のもの。
var second: Second
The second of two gestures that can happen simultaneously.
同時に起こることが可能な2つのゼスチャの2番目のもの。
Supporting Types
支援を行う型
typealias Body
The type of gesture representing the body of Self
.
ジェスチャの型、Self
のボディを表しています。
struct Value
The value of a simultaneous gesture that indicates which of its two gestures receives events.
ある同時のジェスチャの値、それは、それの2つのジェスチャのどちらがイベントを受け取るかを指し示します。
Default Implementations
省略時実装
See Also
参照
Combined Gestures
結合されたジェスチャ
struct ExclusiveGesture
A gesture that consists of two gestures where only one of them can succeed.
あるジェスチャ、それは2つのジェスチャから成ります、そこではそれらのただ1つだけが成功できます。