想要在2分钟后连续向服务器发送位置

时间:2016-05-21 08:04:21

标签: ios objective-c

我使用以下代码获取当前位置:

#define IS_OS_8_OR_LATER ([[[UIDevice currentDevice] systemVersion] floatValue] >= 8.0)


#import "ViewController.h"
@interface ViewController ()

@end

@implementation ViewController

- (void)viewDidLoad {
[super viewDidLoad];
// Do any additional setup after loading the view, typically from a nib.



self.locationManager = [[CLLocationManager alloc] init];
self.locationManager.delegate = self;
`#ifdef __IPHONE_8_0
if(IS_OS_8_OR_LATER) {
    [self.locationManager requestAlwaysAuthorization];
}


#endif

[self.locationManager startUpdatingLocation];

NSLog(@"latitude: %f, longitude: %f",self.locationManager.location.coordinate.latitude,self.locationManager.location.coordinate.longitude);
}

它工作正常,但我想在2分钟后连续向服务器发送位置。我应该为此做些什么?

0 个答案:

没有答案