我想在我的应用中发生“摇晃设备”事件-即,当用户摇晃设备时,发生了一些事情。
我尝试实现:
-(void) motionEnded:(UIEventSubtype)motion withEvent:(UIEvent *)event {
if (event.subtype == UIEventSubtypeMotionShake) {
//something happens
}
}
它似乎不起作用.......
有谁知道我应该使用哪种方法?
最佳答案
尝试使用以下代码,对我来说效果很好。
- (void)motionEnded:(UIEventSubtype)motion withEvent:(UIEvent *)event
{
if ( event.subtype == UIEventSubtypeMotionShake )
{
//your code
}
if ( [super respondsToSelector:@selector(motionEnded:withEvent:)] )
[super motionEnded:motion withEvent:event];
}
- (BOOL)canBecomeFirstResponder
{
return YES;
}