我用通過簡單地實現該方法,檢測從AppDelegate中抖動運動:motionBegan:withEvent:方法中的AppDelegate在IOS不叫10
- (void)motionBegan:(UIEventSubtype)motion withEvent:(UIEvent *)event {
NSLog(@"shake shake shake");
}
其中在IOS 8工作正常和9。然而它不」不再適用於iOS 10。 我也試過添加
- (BOOL)canBecomeFirstResponder {
return YES;
}
但這並沒有幫助。這在UIViewControllers中可以正常工作。 iOS 10中有什麼改變,還是隻是一個錯誤?
它在視圖控制器中工作正常,這不是問題。我需要它在AppDelegate中工作。 – almas