0

こんにちは私はここでiOSの見出しデータについて助けが必要な状況にあります、私は私のアプリケーションでaiが使用するCoreLocationフレームワークを
私の.hファイルにしています

@interface ViewController : UIViewController<CLLocationManagerDelegate>{
    UIImageView *arrowImage; 
    UILabel *magneticHeadingLabel; 
    UILabel *trueHeadingLabel;
    CLLocationManager *locationManager;
}

@property (nonatomic, retain) CLLocationManager *locationManager;
@end

.mファイル内

@implementation ViewController
@synthesize locationManager;

-(void)locationManager:(CLLocationManager*)manager didUpdateHeading:(CLHeading*)newHeading {

    NSLog(@"New magnetic heading: %f", newHeading.magneticHeading);
    NSLog(@"New true heading: %f", newHeading.trueHeading);
    NSLog(@"=>%@",[NSString stringWithFormat:@"%.1fmi",newHeading.headingAccuracy]);
    NSString *headingstring = [[NSString alloc] initWithFormat:@"%f",newHeading.trueHeading];
    trueHeadingLabel.text = headingstring;
    [headingstring release];

    NSString *magneticstring = [[NSString alloc]initWithFormat:@"%f",newHeading.magneticHeading];
    magneticHeadingLabel.text = magneticstring;
    [magneticstring release];

}

-(void)getHeadInfo{
    self.locationManager = [[CLLocationManager alloc] init];
    self.locationManager.desiredAccuracy = kCLLocationAccuracyBestForNavigation;
    self.locationManager.delegate = self;

    if ([CLLocationManager headingAvailable] ) 
    {      
        NSLog(@"Heading Available...!");
        self.locationManager.headingFilter = kCLHeadingFilterNone; 
        [self.locationManager startUpdatingHeading];

    } 
    else {
        NSLog(@"No Heading Available: ");
        UIAlertView *noCompassAlert = [[UIAlertView alloc] initWithTitle:@"No Compass!" message:@"This device does not have the ability to measure magnetic fields." delegate:nil cancelButtonTitle:@"OK" otherButtonTitles:nil];
        [noCompassAlert show];
        [noCompassAlert release];
    } 
}

- (void)viewDidLoad {
    [super viewDidLoad];
    arrowImage = [[UIImageView alloc]initWithImage:[UIImage imageNamed:@"right_arrow"]];
    arrowImage.frame = CGRectMake(95, 30, 128, 128);
    [self.view addSubview:arrowImage];

    trueHeadingLabel = [[UILabel alloc] initWithFrame:CGRectMake(15, 300, 250, 30)];
    trueHeadingLabel.textAlignment = UITextAlignmentLeft;
    trueHeadingLabel.textColor = [UIColor purpleColor];
    trueHeadingLabel.backgroundColor = [UIColor clearColor];
    trueHeadingLabel.font = [UIFont systemFontOfSize:13];
    trueHeadingLabel.text = [NSString stringWithFormat:@"trueHeadingLabel:"];
    [self.view addSubview:trueHeadingLabel];

    magneticHeadingLabel = [[UILabel alloc] initWithFrame:CGRectMake(15, 350, 250, 30)];
    magneticHeadingLabel.textAlignment = UITextAlignmentLeft;
    magneticHeadingLabel.textColor = [UIColor purpleColor];
    magneticHeadingLabel.backgroundColor = [UIColor clearColor];
    magneticHeadingLabel.font = [UIFont systemFontOfSize:13];
    magneticHeadingLabel.text = [NSString stringWithFormat:@"magneticHeadingLabel:"];
    [self.view addSubview:magneticHeadingLabel];

    UIButton *start = [[UIButton alloc]initWithFrame:CGRectMake(140, 310, 50, 30)];
    [start setBackgroundColor:[UIColor redColor]];
    [start setTitle:@"start" forState:UIControlStateNormal];
    [start addTarget:self action:@selector(getHeadInfo) forControlEvents:UIControlEventTouchUpInside];
    [self.view addSubview:start];
    [start release];
}

シミュレータが見出しデータを返さないことはわかっています。iPodtouchを使用していますが、それでも[CLLocationManagerheadingAvailable]がtrueを返しません。これは緊急事態です。誰か助けてください。

4

1 に答える 1

2

確かではありませんが、私が知る限り、iPod touch には GPS / コンパス モジュールが含まれていません。Wi-Fi データベースを介して位置情報を取得します。したがって、iPod Touch では見出しを表示できないため、見出しは表示されません。

iPod Touch には、ジャイロスコープと加速度計しかありません。これらに関する情報を読み取るには、Core Motion Frameworkを使用する必要があります。

CMMotionManager オブジェクトは、iOS が提供するモーション サービスへのゲートウェイです。これらのサービスは、加速度計データ、回転速度データ、磁力計データ、および姿勢などのその他のデバイス動作データをアプリケーションに提供します。これらのタイプのデータは、デバイスの加速度計と (一部のモデルでは) 磁力計とジャイロスコープから発生します。

于 2012-07-02T06:09:35.683 に答える