iOS开发基础 - 重力感应

//开始摇晃
- (void)motionBegan:(UIEventSubtype)motion withEvent:(UIEvent *)event{ NSLog(@"颤抖吧 少年"); //写动画 放一组图片 播放图片 } //取消摇晃 - (void)motionCancelled:(UIEventSubtype)motion withEvent:(UIEvent *)event{ NSLog(@"取消"); } //结束摇晃 - (void)motionEnded:(UIEventSubtype)motion withEvent:(UIEvent *)event{ NSLog(@"结束"); }

你可能感兴趣的:(iOS开发基础 - 重力感应)