首页 > 代码库 > iOS摇一摇的使用

iOS摇一摇的使用

我知道的摇一摇有以下2种方案:

一、直接用系统自带的motionBegan方法

-(void)motionBegan:(UIEventSubtype)motion withEvent:(UIEvent *)event

假如程序不响应此方法,试着加入下面方法:

-(BOOL)canBecomeFirstResponder

{

    return YES;

}

如果还不行,建议用第二种方法。


二、motionBegan+通知的方法

1.在Appdelegate里写motionBegan方法

-(void)motionBegan:(UIEventSubtype)motion withEvent:(UIEvent *)event

{

    [[NSNotificationCenterdefaultCenter]postNotificationName:@"shake"object:self];

}

2.在需要接收通知的页面添加通知

[[NSNotificationCenterdefaultCenter]addObserver:selfselector:@selector(shakeAction)name:@"shake"object:nil];

写在viewDidLoad里即可。

这里的shakeAction就是摇一摇需要调用的方法,自己修改,通知名字对应就好,可自由修改。


iOS摇一摇的使用