IOS 实现摇一摇的操作

时间:2022-04-14 06:55:10

要实现摇一摇的功能,类似于微信的摇一摇

方法1:通过分析加速计数据来判断是否进行了摇一摇操作(比较复杂)

方法2:iOS自带的Shake监控API(非常简单)

本文介绍方法2:

判断摇一摇的步骤:

  1)检测到开始摇动   

?
1
2
3
4
5
- (void)motionBegan:(UIEventSubtype)motion withEvent:(UIEvent *)event{
 
     //检测到后可做一些处理
 
   }

  2)摇一摇被取消或中断    

?
1
2
3
- (void)motionCancelled:(UIEventSubtype)motion withEvent:(UIEvent *)event{
 
    }

  3)摇动结束   

?
1
2
3
4
5
- (void)motionEnded:(UIEventSubtype)motion withEvent:(UIEvent *)event{
 
   //结束后可做一些处理
 
   }

上述三个方法均继承UIKit中的UIResponder.h ,无需import类,也无需继承Delegate便可直接使用

 感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!