要实现摇一摇的功能,类似于微信的摇一摇
方法1:通过分析加速计数据来判断是否进行了摇一摇操作(比较复杂)
方法2:iOS自带的Shake监控API(非常简单)
本文介绍方法2:
判断摇一摇的步骤:
1)检测到开始摇动
- (void)motionBegan:(UIEventSubtype)motion withEvent:(UIEvent *)event{
//检测到后可做一些处理
}
2)摇一摇被取消或中断
- (void)motionCancelled:(UIEventSubtype)motion withEvent:(UIEvent *)event{
}
3)摇动结束
- (void)motionEnded:(UIEventSubtype)motion withEvent:(UIEvent *)event{
//结束后可做一些处理
}
上述三个方法均继承UIKit中的UIResponder.h ,无需import类,也无需继承Delegate便可直接使用