你好,歡迎來到IOS教程網

 Ios教程網 >> IOS基礎知識 >> IOS入門簡介 >> iOS加速度傳感器(accelerometer)

iOS加速度傳感器(accelerometer)

編輯:IOS入門簡介

IOS加速度傳感器(accelerometer)


簡介

加速度傳感器是根據x、y和z三個方向來檢測在設備位置的改變。

通過加速度傳感器可以知道當前設備相對於地面的位置。

以下實例代碼需要在真實設備上運行,在模擬器上是無法工作的。

實例步驟

1、創建一個簡單的視圖應用程序

2、在ViewController.xib中添加三個標簽,並創建一個ibOutlets分別為: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

輸出

當我們在iPhone設備中運行該應用程序,得到的輸出結果如下所示。

accelerometer_Output

  1. 上一頁:
  2. 下一頁:
蘋果刷機越獄教程| IOS教程問題解答| IOS技巧綜合| IOS7技巧| IOS8教程
Copyright © Ios教程網 All Rights Reserved