加速计
// 过期的加速计类 UIAccelerometer 是不需要引入系统框架的 , //CoreMotionManager 需要引入 CoreMotion 框架 #import "ViewController.h" #import <CoreMotion/CoreMotion.h> #import "UIView+Extension.h" #import "AudioTool.h" @interface ViewController ()< UIAccelerometerDelegate > @property ( weak , nonatomic ) IBOutlet UIImageView *ball; // 过期的加速计对象 @property ( nonatomic , strong ) UIAccelerometer *accelerometer; @property ( nonatomic , strong ) CMMotionManager *manager; // 记录当前的速度 x 轴 Y 轴 的速度 @property ( nonatomic , assign ) CGPoint speed; // 保存上一次的坐标 @property ( nonatomic , assign ) CGPoint prePoint; @end @implementation