码迷,mamicode.com
首页 > 移动开发 > 详细

ios晃动检测

时间:2014-12-31 19:59:06      阅读:175      评论:0      收藏:0      [点我收藏+]

标签:

第一种

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.     } 

ios晃动检测

标签:

原文地址:http://www.cnblogs.com/iOS-mt/p/4196448.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!