美文网首页
iOS 后台运行 定位上传

iOS 后台运行 定位上传

作者: 摇曳的芦苇 | 来源:发表于2016-10-28 15:36 被阅读0次

在GitHub 中下载voyage11/Location

https://github.com/voyage11/Location.git

只需要将上面的6个文件导入到 程序中即可

app 推到 后台时要进行后台定位的界面要存在,只需在界面中添加

.h中引入

#import "LocationTracker.h"

@interface MainTableViewController : UITableViewController

//定义LocationTracker对象

@property LocationTracker * locationTracker;

// 定义定时器

@property (nonatomic) NSTimer* locationUpdateTimer;

@end

.m 中代码 

-(void)viewDidLoad{

self.locationTracker = [[LocationTracker alloc]init];

[self.locationTracker startLocationTracking];

NSTimeInterval time = 300.0;

self.locationUpdateTimer =

[NSTimer scheduledTimerWithTimeInterval:time target:self selector:@selector(updateLocation)userInfo:nil repeats:YES];

}

//向服务器中提交的方法

-(void)updateLocation {

[self.locationTracker updateLocationToServer];

}

在LocationTracker.m 中 修改 updateLocationToserver 方法中的代码改为自己的上传代码即可

相关文章

  • IOS后台定位以及位置上传方案

    IOS后台定位以及位置上传方案 iOS定位原理和使用建议 iOS后台持续定位并定时上传 iOS 通过定位获取常驻后...

  • iOS 后台运行 定位上传

    在GitHub 中下载voyage11/Location https://github.com/voyage11/...

  • IOS 后台定位上传

    APP开发中经常需要使用到后台定位上传功能,在IOS中可通过CLLocationManage类来实现。其中后台定位...

  • iOS 后台持续定位

    前言 前文讲到程序推到后台的运行情况iOS 对APP推到后台运行时长的探究,主要还是想做个后台定位,希望APP在按...

  • iOS后台运行-实时定位

    1.先说说iOS 应用程序5个状态: 停止运行-应用程序已经终止,或者还未启动。 不活动-应用程序处于前台但不再接...

  • Paper Collection - Background Ta

    1.IOS后台运行机制详解(一)2.IOS后台运行机制详解(二)3.IOS后台运行 之 后台播放音乐4.转载:IO...

  • iOS 短信验证码倒计时按钮

    级别: ★★☆☆☆标签:「iOS 验证码后台倒计时」「NSTimer后台运行」「iOS 定时器后台运行」作者: ...

  • 高德 定位稀释

    需求:司机接到乘客后要上传经纬度,总不能一秒一个的上传吧。需要把经纬度拉稀。 参考文献:iOS开发:后台定位并上传...

  • iOS开发笔记:后台

    iOS7程序后台运行

  • iOS 申请后台运行的时间

    iOS 申请后台运行的时间

网友评论

      本文标题:iOS 后台运行 定位上传

      本文链接:https://www.haomeiwen.com/subject/peleuttx.html