ios晃动检测

第一种

1、在AppDelegate.h中进行如下设置:

 

C代码  技术分享
  1. - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions  
  2. {  
  3.     application.applicationSupportsShakeToEdit = YES;  
  4. }  

 

2、在你需要对晃动事件进行处理的ViewController中添加如下代码:

 

C代码  技术分享
  1. -(BOOL)canBecomeFirstResponder {  
  2.     return YES;  
  3. }  
  4.   
  5. -(void)viewDidAppear:(BOOL)animated {  
  6.     [super viewDidAppear:animated];  
  7.     [self becomeFirstResponder];  
  8. }  
  9.   
  10. - (void)viewWillDisappear:(BOOL)animated {  
  11.     [self resignFirstResponder];  
  12.     [super viewWillDisappear:animated];  
  13. }  
  14.   
  15. - (void)motionEnded:(UIEventSubtype)motion withEvent:(UIEvent *)event  
  16. {  
  17.     if (motion == UIEventSubtypeMotionShake) {  
  18.         NSLog(@"检测到晃动");  
  19.     } 

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。