こんにちは、タイトルはそれを要約しています。加速度計を使用していますが、画面から消え続けています.15歳で、端で止めようとして多くの問題を抱えています.ここに私のView Controller.mファイルがありますコード。
#import "ViewController.h"
@interface ViewController ()
@end
@implementation ViewController
@synthesize person, delta;
- (void)viewDidLoad
{
UIAccelerometer *accel =[UIAccelerometer sharedAccelerometer];
accel.delegate = self;
accel.updateInterval = 1.0f / 60.0f;
[super viewDidLoad];
// Do any additional setup after loading the view, typically from a nib.
}
-(void)accelerometer:(UIAccelerometer *)accelerometer
didAccelerate:(UIAcceleration *)acceleration{
NSLog(@"x : %g", acceleration.x);
NSLog(@"y : %g", acceleration.y);
NSLog(@"z : %g", acceleration.z);
delta.x = acceleration.y *50;
// delta.x = acceleration.x *8;
person.center = CGPointMake(person.center.x + delta.x,person.center.y + delta.y );
}
- (void)didReceiveMemoryWarning
{
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}
@end