簡體   English   中英

嘗試在文本文件中寫入位置

[英]Try to write location in a text file

我正在為越獄的iPhone開發。 我正在閱讀Beginning iOS 5書。 目前,我已經使用了本書中的位置代碼,並對其進行了一些更改。 我在代碼中所做的更改是我將位置寫入文本文件中。 但是程序崩潰了。 盡管相同的程序無需任何修改即可完美運行。

這是代碼:

- (void)viewDidLoad
{
    [super viewDidLoad];
    // Do any additional setup after loading the view, typically from a nib.
    self.locationManager = [[CLLocationManager alloc] init];
    locationManager.delegate = self;
    locationManager.desiredAccuracy = kCLLocationAccuracyBest;
    locationManager.distanceFilter = 2.0f;

    [locationManager startUpdatingLocation];
}






- (void)locationManager:(CLLocationManager *)manager
    didUpdateToLocation:(CLLocation *)newLocation
           fromLocation:(CLLocation *)oldLocation
{
    FILE *file = fopen("/usr/locations.txt", "a");

    if (!file)
    {
        fprintf(file, "Error opening file");
    }

    if (startingPoint == nil)
        self.startingPoint = newLocation;

    NSString *latitudeString = [NSString stringWithFormat:@"%g\u00B0",
                                newLocation.coordinate.latitude];
    latitudeLabel.text = latitudeString;


    NSNumber *latitude = [[NSNumber alloc] initWithDouble:newLocation.coordinate.latitude];
    NSNumber *longitude = [[NSNumber alloc] initWithDouble:newLocation.coordinate.longitude];


    NSString *longitudeString = [NSString stringWithFormat:@"%g\u00B0",
                                 newLocation.coordinate.longitude];
    longitudeLabel.text = longitudeString;


    NSString *horizontalAccuracyString = [NSString stringWithFormat:@"%gm",
                                          newLocation.horizontalAccuracy];
    horizontalAccuracyLabel.text = horizontalAccuracyString;


    NSString *altitudeString = [NSString stringWithFormat:@"%gm",
                                newLocation.altitude];
    altitudeLabel.text = altitudeString;

    NSString *verticalAccuracyString = [NSString stringWithFormat:@"%gm",
                                        newLocation.verticalAccuracy];
    verticalAccuracyLabel.text = verticalAccuracyString;


    CLLocationDistance distance = [newLocation
                                   distanceFromLocation:startingPoint];
    NSString *distanceString = [NSString stringWithFormat:@"%gm", distance];
    distanceTraveledLabel.text = distanceString;


    struct tm *local;
    time_t t;

    t = time(NULL);
    local = localtime(&t);

    fprintf(file, "Local time and Date: %s ", asctime(local));

    //----------------- ------------------------------------------------------------

    fprintf(file, "Latitude = %lf, Longitude = %lf \n", 
            newLocation.coordinate.latitude, newLocation.coordinate.longitude);


    fclose(file);

}

您最近對該問題的評論說,您想打印到控制台。 為了在控制台上打印,請使用NSLog() 當您將格式說明符用於對象%@ ,替換該對象的字符串是該對象的description方法。

要在控制台上打印位置,請使用

NSLog(@"New location: %@", newLocation);
NSLog(@"Old location: %@", oldLocation);

CLLocation上的描述方法返回“格式為'日期,時間的緯度,經度+/-精度m(速度kph /航向)的字符串”。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM