gpt4 book ai didi

ios - iOS:如何实现“震动设备”事件?

转载 作者:行者123 更新时间:2023-12-01 17:45:41 25 4
gpt4 key购买 nike

我想在我的应用中发生“摇晃设备”事件-即,当用户摇晃设备时,发生了一些事情。
我尝试实现:

-(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;
}

关于ios - iOS:如何实现“震动设备”事件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6806937/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com