Приведенный ниже код является точной копией примера Shake and Bake из Beginning Iphone 4 Development. Отсутствует инструкция BOOL if перед ускорением CMAcceleration = accelerometerData.acceleration; потому что я хочу, чтобы человек встряхивал и обновлял результаты столько раз, сколько он хочет. У меня есть кнопка, которая выполняет тот же код без нареканий. Когда я запускаю код и встряхиваю iphone, он вылетает. Что мне не хватает, что заставит эту работу? Вы не можете запустить тот же код с помощью кнопки, что и с методом встряхивания?
Example.h
#import <CoreMotion/CoreMotion.h>
#define kAccelerationThreshold 1.7
#define kUpdateInterval (1.0f/10.0f)
@interface exampleViewController : UIViewController {
CMMotionManager *motionManager;
}
@property (retain,nonatomic) CMMotionManager *motionManager;
@end
Example.m
@synthesize motionManager;
-(void)viewDidLoad {
self.motionManager = [[[CMMotionManager alloc] init] autorelease];
motionManager.accelerometerUpdateInterval = kUpdateInterval;
NSOperationQueue *queue = [[[NSOperationQueue alloc] init] autorelease];
[motionManager startAccelerometerUpdatesToQueue:queue
withHandler:
^(CMAccelerometerData *accelerometerData, NSError *error){
if (error) {
[motionManager stopAccelerometerUpdates];
} else {
CMAcceleration acceleration = accelerometerData.acceleration;
if (acceleration.x > kAccelerationThreshold
|| acceleration.y > kAccelerationThreshold
|| acceleration.z > kAccelerationThreshold){
// There is a bunch of other stuff here, but it all works using a button called shake....
example4.hidden = NO;
select1.text = first;
display.text = [[NSString alloc] initWithFormat: @"%@", first];
}
}
}];
}
- (void)dealloc
{
[super dealloc];
[motionManager release];
}
- (void)viewDidUnload {
[super viewDidUnload];
self.motionManager = nil;
}
@end