gpt4 book ai didi

ios - iOS 后台扫描上的 Google Nearby API

转载 作者:行者123 更新时间:2023-11-28 12:44:23 25 4
gpt4 key购买 nike

我已经在我的 Swift 应用程序中设置了 Nearby API,当应用程序位于前台时我可以接收消息。关注instructions in the docs我尝试在适当的位置包含 params.allowInBackground = true 但出现错误:

Value of type 'GNSBeaconStrategyParams' has no member 'allowInBackground'

所以,我不能那样做,我的 GNSSubscription 对象看起来像这样:

    subscription = messageManager.subscriptionWithMessageFoundHandler(
messageFoundHandler, messageLostHandler: messageLostHandler,
paramsBlock: { (params: GNSSubscriptionParams!) in
params.deviceTypesToDiscover = .BLEBeacon
params.permissionRequestHandler = { (permissionHandler: GNSPermissionHandler!) in
// TODO: Show custom dialog here, and call permissionHandler after it is dismissed
// show the dialogue
}
params.beaconStrategy = GNSBeaconStrategy(paramsBlock: { (params: GNSBeaconStrategyParams!) in
params.includeIBeacons = true
//params.allowInBackground = true //*** THIS DOESN'T WORK ***
})
})

我的消息处理程序看起来像这样:

    messageFoundHandler = {[unowned self](message: GNSMessage!) -> Void in
print("Found handler:", message.type, "->", String(data: message.content!, encoding:NSUTF8StringEncoding)!)
if UIApplication.sharedApplication().applicationState != .Active {
let localNotification = UILocalNotification()
localNotification.alertBody = "Message received" + String(data: message.content!, encoding:NSUTF8StringEncoding)!
UIApplication.sharedApplication().presentLocalNotificationNow(localNotification)
}
}

messageLostHandler = {(message: GNSMessage!) -> Void in
print("Lost Handler:", message.type, "->", String(data: message.content, encoding:NSUTF8StringEncoding)!)
}

通过此设置和范围内的 Eddystone 信标,我现在可以在后台收到通知!既然这是我想要的,我就应该高兴。但是,如果我将设备连接到 xcode 并在后台使用应用程序,我会开始看到这样的消息流(似乎大约每 5 秒出现一次):

2016-07-23 19:35:08.243 Hoc[1269:622746] Can't endBackgroundTask: no background task exists with identifier 2f3, or it may have already been ended. Break in UIApplicationEndBackgroundTaskError() to debug.

我使用的是 NearbyMessages v0.10.0。如果有人能给我指出正确的方向,让后台扫描在 iOS 上可靠地工作,那就太好了。

最佳答案

这是由 Cocoapods 的问题引起的。尽管我使用 $ pod update 和类似的方法从我的项目中删除/重新添加 NearbyMessages cocoaPod,但出于某种原因我无法获得最新版本 (1.0.1) 的 Nearby SDK安装。解决方案是从 Github 手动下载规范并覆盖 ~/.cocoapods/repos/master 中的文件。

然后为了确保安装了最新版本,我更改了我的 podfile 以包含有效的 pod 'NearbyMessages', '~> 1.0.1'

现在我可以在 GNSBeaconStrategy 对象上设置适当的参数,并且 Eddystone 信标的背景扫描在 iOS 的后台工作。 :-)

希望对您有所帮助。

关于ios - iOS 后台扫描上的 Google Nearby API,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38545445/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com