繁体   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