次の方法で共有


CMDeviceMotionHandler 代理人

定義

からイベントを受信するために使用されるデリゲート署名 CMMotionManager

public delegate void CMDeviceMotionHandler(CMDeviceMotion motion, NSError error);
type CMDeviceMotionHandler = delegate of CMDeviceMotion * NSError -> unit

パラメーター

motion
CMDeviceMotion

このイベントのデバイスモーション (デバイスの姿勢、回転速度、加速度)。

error
NSError

エラーがある場合は 。報告するエラーがない場合は null。

注釈

このシグネチャは、 の StartDeviceMotionUpdates の CMMotionManager引数として使用されます。

次に例を示します。

var motionManager = new CMMotionManager ();
motionManager.AccelerometerUpdateInterval = 0.01; // 100Hz
motionManager.StartDeviceMotionUpdates (NSOperationQueue.CurrentQueue, (motion, error) => {
     Console.WriteLine ("RotationRate={0} Gravity={1} UserAcceleration={2} Attitude={3}", motion.RotationRate, motion.Gravity, motion.UserAcceleration, motion.Attitude);
});

適用対象