📜  iOS-加速度计

📅  最后修改于: 2020-12-08 06:19:35             🧑  作者: Mango


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

加速度计–涉及的步骤

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

步骤2-ViewController.xib中添加三个标签,并创建ibOutlet,将它们分别命名为xlabel,ylabel和zlabel。

步骤3-更新ViewController.h如下-

#import 

@interface ViewController : UIViewController {
   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教程