IOS 가속도 센서(가속도계)


IOS 가속도 센서(가속도계)


소개

가속도 센서는 x, y, z 세 방향을 기준으로 기기의 위치 변화를 감지합니다.

가속도 센서를 통해 지면을 기준으로 한 기기의 현재 위치를 알 수 있습니다.

다음 예제 코드는 실제 장치에서 실행해야 하며 시뮬레이터에서는 작동하지 않습니다.

인스턴스 단계

1. 간단한 보기 애플리케이션을 만듭니다

2. ViewController.xib에 3개의 레이블을 추가하고 각각 xlable, ylabel 및 zlabel

3을 만듭니다. ViewController.h

#import <UIKit/UIKit.h>

@interface ViewController : UIViewController<UIAccelerometerDelegate>
{
    IBOutlet UILabel *xlabel;
    IBOutlet UILabel *ylabel;
    IBOutlet UILabel *zlabel;

}
@end

를 업데이트합니다. 4. 아래와 같이 ViewController.m

#import "ViewController.h"

@interface ViewController ()

@end

@implementation ViewController

- (void)viewDidLoad
{
    [super viewDidLoad];
    [[UIAccelerometer sharedAccelerometer]setDelegate:self];
    //Do any additional setup after loading the view,typically from a nib
}

- (void)didReceiveMemoryWarning
{
    [super didReceiveMemoryWarning];
    // Dispose of any resources that can be recreated.
}
- (void)accelerometer:(UIAccelerometer *)accelerometer didAccelerate:
  (UIAcceleration *)acceleration{
    [xlabel setText:[NSString stringWithFormat:@"%f",acceleration.x]];
    [ylabel setText:[NSString stringWithFormat:@"%f",acceleration.y]];
    [zlabel setText:[NSString stringWithFormat:@"%f",acceleration.z]];
}

@end

Output

을 업데이트합니다. iPhone 기기에서 애플리케이션을 실행하면 다음과 같이 출력됩니다.

accelerometer_Output