iOS加速度计


加速度计用于检测设备在x,y和z三个方向上的位置变化。我们可以知道设备相对于地面的当前位置。要测试此示例,您需要在 设备 上运行它,并且不能在模拟器上运行。

加速度计 - 涉及的步骤

第1步 - 创建一个简单的 基于View的应用程序

第2步 - 在 ViewController.xib中 添加三个标签,并创建ibOutlets,将它们命名为xlabel,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

输出

当我们在 iPhone 设备中运行应用程序时,我们将获得以下输出 -

iOS教程