介绍
加速度计,用于检测在三个方向上的x,y和z中的移动设备的位置的变化。我们可以知道相对于地面的移动设备的当前位置。为了测试这个例子,需要它在运行设备中,模拟器是行不通的。
涉及到以下步骤
1. 创建一个简单的 View based application.
2. 添加三个标签在 ViewController.xib 并创建ibOutlets 命名为 them as 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设备中,我们将得到下面的输出。
|
|