ios 摇一摇功能的实现

当我们用微信的时候是不是感觉摇一摇的功能很炫呢?是不是感觉实现起来比较麻烦呢?

其实,不然,这些都是苹果已经给我们封装好了,给我提供了非常简单的入口了。

在UIResponder中有这些方法:

-(void)motionBegan:(UIEventSubtype)motion withEvent:(UIEvent *)event{
    NSLog(@"began");
}
-(void)motionCancelled:(UIEventSubtype)motion withEvent:(UIEvent *)event{
    NSLog(@"cancel");
}
-(void)motionEnded:(UIEventSubtype)motion withEvent:(UIEvent *)event{
    NSLog(@"end");
}

在UIViewController的子类中都可以直接使用这些方法,因为UIViewController也是继承于UIResponder的。

实现中,需要让viewController这个类本身支持摇一摇这个功能。

代码:

    [[UIApplication sharedApplication] setApplicationSupportsShakeToEdit:YES];
    [self becomeFirstResponder];

-(BOOL)canBecomeFirstResponder {

    return YES;

}


ok,这两句代码就能支持这个功能了。


你可能感兴趣的:(ios 摇一摇功能的实现)