2016/4/10追記:Swift 2.2のコードを追記しました Core Motionを使って、加速度センサーを使用する方法をメモしておきます。 このセンサーを使用することでx、y、z軸に沿った速度の変化を測定することができます。 (iOSイベント処理ガイドより) 実装方法 まずは「CoreMotion.framework」を追加します。 ヘッダをインポートします。 Swift: import CoreMotion Objective-C: #import <CoreMotion/CoreMotion.h> インスタンスを生成します。 Swift: let manager = CMMotionManager() Objective-C: _motionManager = [[CMMotionManager alloc] init]; 適切な更新間隔を設定をして加速度センサーを有効化します