UIResponder.TouchesMoved(NSSet, UIEvent) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
當一或多個手指在畫面上移動時傳送。
[Foundation.Export("touchesMoved:withEvent:")]
public virtual void TouchesMoved (Foundation.NSSet touches, UIKit.UIEvent evt);
abstract member TouchesMoved : Foundation.NSSet * UIKit.UIEvent -> unit
override this.TouchesMoved : Foundation.NSSet * UIKit.UIEvent -> unit
參數
- 屬性
備註
由於 iOS 9.0, TouchesMoved(NSSet, UIEvent) 支援的硬體和設定會針對使用者套用壓力的變更引發事件。 Forceset 引數中 touches
物件的 屬性 UITouch 包含引發事件的觸控程度。 下列範例顯示基本用途:
if (TraitCollection.ForceTouchCapability == UIForceTouchCapability.Available) {
UITouch t = touches.AnyObject as UITouch;
ForceLabel.Text = "Force: " + t.Force.ToString ();
}
else {
ForceLabel.Text = "Force Not Active";
}