我正在创建一个应用程序,目前它对运动摇晃有反应,这是摇晃的代码:
- (void)motionEnded:(UIEventSubtype)motion withEvent:(UIEvent *)event
{
if (event.type == UIEventSubtypeMotionShake) {}
}
现在用户必须真的很难摇晃才能发生反应,有没有更复杂的方法来检测光波,或者像 5 次轻摇然后反应?
我正在创建一个应用程序,目前它对运动摇晃有反应,这是摇晃的代码:
- (void)motionEnded:(UIEventSubtype)motion withEvent:(UIEvent *)event
{
if (event.type == UIEventSubtypeMotionShake) {}
}
现在用户必须真的很难摇晃才能发生反应,有没有更复杂的方法来检测光波,或者像 5 次轻摇然后反应?
尝试以下
在你的文件的 .h
#import <UIKit/UIKit.h>
@interface ShakeUIView : UIView <UIAccelerometerDelegate>{
BOOL hasBeenShaken;
UIAcceleration* lastAction;
id delegate;
}
@property(strong) UIAcceleration* lastAction;
@property (nonatomic, assign) id delegate;
@end
在你文件的 .m
#import "ShakeUIView.h"
@implementation ShakeUIView
@synthesize lastAction;
// adjust the threshold to increase/decrease the required amount of shake
static BOOL SJHShaking(UIAcceleration* last, UIAcceleration* current, double threshold) {
double
deltaX = fabs(last.x - current.x),
deltaY = fabs(last.y - current.y),
deltaZ = fabs(last.z - current.z);
return
(deltaX > threshold && deltaY > threshold) ||
(deltaX > threshold && deltaZ > threshold) ||
(deltaY > threshold && deltaZ > threshold);
}
- (id)initWithFrame:(CGRect)frame
{
self = [super initWithFrame:frame];
if (self) {
// Initialization code
}
return self;
}
-(void)awakeFromNib{
[super awakeFromNib];
[UIAccelerometer sharedAccelerometer].delegate = self;
}
- (void) accelerometer:(UIAccelerometer *)accelerometer didAccelerate:(UIAcceleration *)acceleration {
if (self.lastAction) {
if (!hasBeenShaken && SJHShaking(self.lastAction, acceleration, 0.7)) {
hasBeenShaken = YES;
// Shake detacted do what you want here
} else if (hasBeenShaken && !SJHShaking(self.lastAction, acceleration, 0.2)) {
hasBeenShaken = NO;
}
}
self.lastAction = acceleration;
}
/*
// Only override drawRect: if you perform custom drawing.
// An empty implementation adversely affects performance during animation.
- (void)drawRect:(CGRect)rect
{
// Drawing code
}
*/
-(void)dealloc{
[UIAccelerometer sharedAccelerometer].delegate = nil;
}
我使用了 UIView 的一个子类,你可以使用任何你想要的东西。