V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
V2EX  ›  brasbug  ›  全部回复第 4 页 / 共 5 页
回复总数  92
1  2  3  4  5  
2018-08-15 12:55:05 +08:00
回复了 brasbug 创建的主题 Apple 最近刚上架了一款记录个人轨迹的 App
@wuyuennn 抱歉哈,没说你说谎。 个人开发者,客服就是自己啊,没办法一直看手机。
2018-08-15 12:52:59 +08:00
回复了 brasbug 创建的主题 Apple 最近刚上架了一款记录个人轨迹的 App
@cbf188 我刚测试了可以哦。
2018-08-15 09:38:53 +08:00
回复了 brasbug 创建的主题 Apple 最近刚上架了一款记录个人轨迹的 App
@cbf188 已经是最小了,因为地图区域太大。
2018-08-14 18:21:56 +08:00
回复了 brasbug 创建的主题 Apple 最近刚上架了一款记录个人轨迹的 App
@eric1202 别忘了给个 Star
2018-08-14 18:18:09 +08:00
回复了 brasbug 创建的主题 Apple 最近刚上架了一款记录个人轨迹的 App
@wuyuennn 有这么高么?我自己测试的很低啊。是不是一直保持前台了?
我再测试看看耗电是哪个部分,过段时间再更一个版本
2018-08-14 11:21:16 +08:00
回复了 brasbug 创建的主题 Apple 最近刚上架了一款记录个人轨迹的 App
@Auston_Jary 没用过 moves,moves 导出的数据格式是什么样的? 可以的话私信我,我看能不能加入一个导入功能。
2018-08-14 09:57:52 +08:00
回复了 brasbug 创建的主题 Apple 最近刚上架了一款记录个人轨迹的 App
@eric1202 个人项目,代码写的烂,不好意思开源,怕被笑话。。
如果想了解的话,https://github.com/flywithbug/im_go 服务端,https://github.com/flywithbug/IMSDK 客户端 IMSDK,
服务端的聊天服务没有被拆出来。我的服务器很渣 1 核 1 GB 1 Mbps,求别攻击。
2018-08-14 09:53:27 +08:00
回复了 brasbug 创建的主题 Apple 最近刚上架了一款记录个人轨迹的 App
@loveour 只要你的手机系统 GPS 更新正常,数据肯定能拿到呀,只要你不手动杀掉后台应用就可以,我没有做自动唤醒。
2018-08-14 09:51:42 +08:00
回复了 brasbug 创建的主题 Apple 最近刚上架了一款记录个人轨迹的 App
@eric1202 就是使用的官方定位库,没啥难度。
第三方库的话,FMDB,YYKit,.
聊天库的话使用的是 GCDAsyncSocket, 服务端我自己用 golang 写的。
2018-08-14 09:38:03 +08:00
回复了 brasbug 创建的主题 Apple 最近刚上架了一款记录个人轨迹的 App
@loveour 没你想的那么麻烦。 设置一下更新距离和多长时间更新一次。就可以了。
使用的这个 API 接口,- (void)allowDeferredLocationUpdatesUntilTraveled:(CLLocationDistance)distance
timeout:(NSTimeInterval)timeout。
接口文档

/*
* allowDeferredLocationUpdatesUntilTraveled:timeout:
*
* Discussion:
* Indicate that the application will allow the location manager to defer
* location updates until an exit criterion is met. This may allow the
* device to enter a low-power state in which updates are held for later
* delivery. Once an exit condition is met, the location manager will
* continue normal updates until this method is invoked again.
*
* Exit conditions, distance and timeout, can be specified using the constants
* CLLocationDistanceMax and CLTimeIntervalMax, respectively, if you are
* trying to achieve an unlimited distance or timeout.
*
* The CLLocationManagerDelegate will continue to receive normal updates as
* long as the application remains in the foreground. While the process is
* in the background, the device may be able to enter a low-power state for
* portions of the specified distance and time interval. While in this
* state, locations will be coalesced for later delivery.
*
* Location updates will be deferred as much as is reasonable to save
* power. If another process is using location, the device may not enter a
* low-power state and instead updates will continue normally. Deferred
* updates may be interspersed with normal updates if the device exits and
* re-enters a low-power state.
*
* All location updates, including deferred updates, will be delivered via
* the delegate callback locationManager:didUpdateLocations:
*
* When deferred updates have ended, the manager will invoke the delegate
* callback locationManagerDidFinishDeferredUpdates:withError:. An error
* will be returned if the manager will not defer updates and the exit
* criteria have not been met.
*/
2018-08-14 08:25:17 +08:00
回复了 brasbug 创建的主题 Apple 最近刚上架了一款记录个人轨迹的 App
@loveour iOS 有个省电模式的接口,我使用的是省电模式,不会一直请求 GPS,系统自己判断是不是需要更新,需要更新的话,系统会自动通知我的应用
2018-08-14 08:24:03 +08:00
回复了 brasbug 创建的主题 Apple 最近刚上架了一款记录个人轨迹的 App
@DingSoung GPS 数据我保存在本地沙盒,使用的是 sqlit 保存的,
我后面可以把数据同步到 iCloud 上,这样数据自己也可以拿到
2018-08-14 08:20:59 +08:00
回复了 brasbug 创建的主题 Apple 最近刚上架了一款记录个人轨迹的 App
@tonzeng 迷雾要钱呢。 我之前想仿个迷雾,后来想想做同样的事情没啥意思,不如做个可以记录每天轨迹的,更直观,回忆某段路线的时候也有个参考
2018-08-14 08:19:56 +08:00
回复了 brasbug 创建的主题 Apple 最近刚上架了一款记录个人轨迹的 App
@qiweiying 我测试过耗电了,iPhone8plus 后台一天,耗电比例 4% , 等会我发个图
2018-08-13 15:40:08 +08:00
回复了 kimwang 创建的主题 问与答 记录骑行轨迹的软件有哪些?
@kimwang 哈哈,这个软件是我刚写完上架的,功能很简单,就记录个轨迹,数据分析这块看看用户需求,可以的话后面再加上。
2018-08-13 05:05:49 +08:00
回复了 chiho 创建的主题 全球工单系统 QQ 的邮箱还能再垃圾些吗?
@Wicked 别为了贬一个 QQ 就捧 Gmail 的臭脚,只要你胡乱注册,垃圾邮箱是会接踵而至的
2018-08-13 04:50:22 +08:00
回复了 kimwang 创建的主题 问与答 记录骑行轨迹的软件有哪些?
足迹-每日轨迹, 记录时不需要网络,iPhone 手机,后台运行。
2018-08-13 04:48:38 +08:00
回复了 leisummer 创建的主题 iOS moves 即将关闭,有什么可代替的 app
iPhone 手机的话 可以使用 足迹-每日轨迹。Android 的话,具体不清楚。
2018-08-13 04:47:44 +08:00
回复了 iqav 创建的主题 问与答 iPhone 需 GPS 记录踪迹,用什么应用好?
足迹-每日轨迹 了解下。。
打开应用退入后台,可以记录你的所有行程。如果手动杀掉就不会再记录。
然后缺点就是数据保存在本地沙盒,删了应用数据就丢了
2018-08-13 04:45:12 +08:00
回复了 UnPace 创建的主题 奇思妙想 通过地图标点记录自己去过的地方,这个产品怎么样?
足迹-每日轨迹 了解一下。
1  2  3  4  5  
关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   我们的愿景   ·   实用小工具   ·   3172 人在线   最高记录 6543   ·     Select Language
创意工作者们的社区
World is powered by solitude
VERSION: 3.9.8.5 · 23ms · UTC 13:12 · PVG 21:12 · LAX 06:12 · JFK 09:12
Developed with CodeLauncher
♥ Do have faith in what you're doing.