我在我的应用中集成了震动识别功能。我已将它放在我的 appdelegate 中,以便能够在整个应用程序中使用它。它在 iOS 5 上运行良好,但在 iOS 4 上却不起作用。
我在 appdelegate.m 中使用以下代码:
- (void)applicationDidBecomeActiveUIApplication *)application {
[self becomeFirstResponder];
....
}
-(BOOL)canBecomeFirstResponder {
return YES;
}
- (void)motionBeganUIEventSubtype)motion withEventUIEvent *)event {
NSLog(@"motionBegan");
}
-(void)motionEndedUIEventSubtype)motion withEventUIEvent *)event{
NSLog(@"motionEnded");
}
如果我在 iOS5 模拟器中运行它并激活摇动手势,我会收到 NSLog 消息。如果我在 iOS 4.3 模拟器中运行它,它就不起作用。真实设备也是如此。
Best Answer-推荐答案 strong>
我有同样的问题。试试
- (void)viewDidAppearBOOL)animated {
[self becomeFirstResponder];
}
而不是
- (void)applicationDidBecomeActiveUIApplication *)application {
[self becomeFirstResponder];
....
}
如 Event Handling Guide: Motion Events .这对我有用。
关于ios - 摇晃识别在 iOS 4 上不工作,在 iOS 5 上工作,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/8458616/
|