UIInterpolatingMotionEffect 類別
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
, UIMotionEffect 會將裝置垂直和水準傾斜對應至索引鍵路徑上的值。
[Foundation.Register("UIInterpolatingMotionEffect", true)]
[ObjCRuntime.Introduced(ObjCRuntime.PlatformName.iOS, 7, 0, ObjCRuntime.PlatformArchitecture.All, null)]
public class UIInterpolatingMotionEffect : UIKit.UIMotionEffect, IDisposable
type UIInterpolatingMotionEffect = class
inherit UIMotionEffect
interface INSCoding
interface INativeObject
interface IDisposable
- 繼承
- 屬性
- 實作
備註
實例 UIInterpolatingMotionEffect 的物件會採用硬體傾斜的值,並將這些值對應到由 MinimumRelativeValue 和 MaximumRelativeValue) 所指定之屬性 (的範圍,然後將它套用至 keypath 所參考的屬性。
然後,計算的差異會套用至 屬性。
下列範例會新增兩個方塊檢視、一個參考檢視,以及一個半透明檢視,其中包含兩個插補動作效果處理常式,一個用於中心。center.y 的 X 位置和一個。
class MotionSquareViewController : UIViewController {
public MotionSquareViewController () : base() {
}
public override void ViewDidLoad ()
{
var reference = new UIView (new RectangleF (110, 110, 90, 90)) {
BackgroundColor = UIColor.Blue
};
var tracking = new UIView (new RectangleF (100, 100, 100, 100)) {
BackgroundColor = UIColor.FromRGBA (.5f, .5f, .5f, .5f)
};
View.AddSubviews (reference, tracking);
var mx = new UIInterpolatingMotionEffect ("center.x", UIInterpolatingMotionEffectType.TiltAlongHorizontalAxis) {
MinimumRelativeValue = new NSNumber (-100),
MaximumRelativeValue = new NSNumber (100)
};
var my = new UIInterpolatingMotionEffect ("center.y", UIInterpolatingMotionEffectType.TiltAlongVerticalAxis) {
MinimumRelativeValue = new NSNumber (-100),
MaximumRelativeValue = new NSNumber (100)
};
tracking.AddMotionEffect (mx);
tracking.AddMotionEffect (my);
}
}
建構函式
UIInterpolatingMotionEffect() |
預設建構函式,初始化這個類別的新實例。 |
UIInterpolatingMotionEffect(IntPtr) |
建立 Unmanaged 物件的 Managed 標記法時所使用的建構函式;由執行時間呼叫。 |
UIInterpolatingMotionEffect(NSCoder) |
從儲存在 unarchiver 物件中的資料初始化 物件的建構函式。 |
UIInterpolatingMotionEffect(NSObjectFlag) |
在衍生類別上呼叫的建構函式,以略過初始化,並只配置 物件。 |
UIInterpolatingMotionEffect(String, UIInterpolatingMotionEffectType) |
, UIMotionEffect 會將裝置垂直和水準傾斜對應至索引鍵路徑上的值。 |
屬性
Class |
, UIMotionEffect 會將裝置垂直和水準傾斜對應至索引鍵路徑上的值。 (繼承來源 NSObject) |
ClassHandle |
這個類別的控制碼。 |
DebugDescription |
此物件的開發人員有意義描述。 (繼承來源 NSObject) |
Description |
物件的描述,ToString 的 Objective-C 版本。 (繼承來源 NSObject) |
Handle |
處理 unmanaged 物件標記法) (指標。 (繼承來源 NSObject) |
IsDirectBinding |
, UIMotionEffect 會將裝置垂直和水準傾斜對應至索引鍵路徑上的值。 (繼承來源 NSObject) |
IsProxy |
, UIMotionEffect 會將裝置垂直和水準傾斜對應至索引鍵路徑上的值。 (繼承來源 NSObject) |
KeyPath |
要套用效果之 上的 UIView 可動畫屬性。 |
MaximumRelativeValue |
KeyPath 的最大值。 |
MinimumRelativeValue |
KeyPath 控制項的最小值。 |
RetainCount |
傳回物件的目前 Objective-C 保留計數。 (繼承來源 NSObject) |
Self |
, UIMotionEffect 會將裝置垂直和水準傾斜對應至索引鍵路徑上的值。 (繼承來源 NSObject) |
Superclass |
, UIMotionEffect 會將裝置垂直和水準傾斜對應至索引鍵路徑上的值。 (繼承來源 NSObject) |
SuperHandle |
用來表示這個 NSObject 基類中方法的控制碼。 (繼承來源 NSObject) |
Type |
受監視的傾斜方向。 |
Zone |
, UIMotionEffect 會將裝置垂直和水準傾斜對應至索引鍵路徑上的值。 (繼承來源 NSObject) |
方法
擴充方法
GetDebugDescription(INSObjectProtocol) |
, UIMotionEffect 會將裝置垂直和水準傾斜對應至索引鍵路徑上的值。 |
GetAccessibilityCustomRotors(NSObject) |
取得適用于 |
SetAccessibilityCustomRotors(NSObject, UIAccessibilityCustomRotor[]) |
設定適用于 |