목차
What Is CoreMotion?
<aside>
ℹ️ Process accelerometer, gyroscope, pedometer, and environment-related events.
</aside>
Core Motion | Apple Developer Documentation
- 기기의 가속도계, 자이로스코프, 자기계, 기압계 등으로부터 얻을 수 있는 모션 및 환경 관련 event를 처리할 수 있게 해주는 Framework
CMMotionManager
CMMotionManager | Apple Developer Documentation
CMMotionManager를 통해 얻을 수 있는 Data는 다음과 같습니다.

- 가속도계 데이터 : 3차원 공간에서의 Device 가속도
- 자이로스코프 데이터 : 3가지 축(x, y, z)에서의 회전
- 자기계 데이터 : 지구의 자기장에 대한 Device 방향
- Device-motion 데이터 : 위의 데이터 등으로 획득할 수 있는 Device 주요 모션
+)