Skip to content

Instantly share code, notes, and snippets.

@JeOam
Created June 5, 2014 02:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save JeOam/645ed21a5fe059d5395c to your computer and use it in GitHub Desktop.
Save JeOam/645ed21a5fe059d5395c to your computer and use it in GitHub Desktop.
监听手机“摇一摇”动作
- (void)motionEnded:(UIEventSubtype)motion withEvent:(UIEvent *)event
{
if (motion == UIEventSubtypeMotionShake)
{
NSLog(@"shaked");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment