CMDeviceMotionHandler 대리자
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
이벤트를 받는 데 사용되는 대리자 서명 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);
});