gpt4 book ai didi

ios - 发送到后台的本地通知在模拟器中有效,但在设备上无效

转载 作者:行者123 更新时间:2023-11-28 08:54:46 24 4
gpt4 key购买 nike

在模拟器中,我能够得到我想要的确切结果:当我触发通知并且我的模拟器手机被锁定时,通知就会被推送到 watch 。

这曾经在设备上工作(我的 iPhone 6 在 iOS 9.1 上,Watch 在 watchOS 2.0 上)。由于某种原因它停止工作,我不知道如何调试问题。

所以在设备上,我通过转到主屏幕并锁定手机并确保我的 watch 处于 sleep 状态来确保该应用程序处于后台。触发通知时,什么也不会发生。当我打开应用程序时,通知终于被触发了。 IE。如果我触发 3 个通知,在我将应用程序重新打开到前台之前,它们都不会注册。这不是它在模拟器中的工作方式(模拟器具有上述正确行为)。

通知是由我更改存储在我的 Firebase 数据库中的文本对象触发的。更改调用 sendNotification 函数。同样,这在模拟器中工作得很好,过去在设备上也能工作,但由于某种原因不再工作了。

在应用委托(delegate)中我有:

func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool {
UIApplication.sharedApplication().registerUserNotificationSettings(UIUserNotificationSettings(forTypes: .Alert, categories: nil))

// Setting up Local Notification
let assistAction = UIMutableUserNotificationAction()
assistAction.activationMode = UIUserNotificationActivationMode.Background
assistAction.identifier = categoryID
assistAction.title = "Assist"
assistAction.authenticationRequired = false
assistAction.destructive = false

// Category
let assistCategory = UIMutableUserNotificationCategory()
assistCategory.identifier = categoryID
assistCategory.setActions([assistAction], forContext: UIUserNotificationActionContext.Default)

// Only way to get this to work with parameter
let categories = NSSet(object: assistCategory)

// Settings
let settings = UIUserNotificationSettings(forTypes: [.Alert, .Badge, .Sound], categories: categories as? Set<UIUserNotificationCategory>)
UIApplication.sharedApplication().registerUserNotificationSettings(settings)
// UIApplication.sharedApplication().registerForRemoteNotifications()


return true
}

然后在我的 View Controller 中我有:

func sendNotification(customerName: String, helpText: String) {
// Local Notification
let notification = UILocalNotification()
notification.alertBody = "\(customerName) \(helpText)"
notification.soundName = UILocalNotificationDefaultSoundName
notification.fireDate = NSDate()
notification.category = categoryID
UIApplication.sharedApplication().presentLocalNotificationNow(notification)
print("Sent notification");
}

最佳答案

模拟器的工作方式似乎与设备不同。奇怪的是,模拟器本地通知表现得像远程推送通知。

我最终放弃了尝试在应用程序处于设备后台时显示本地通知,因为我了解到这不是预期的行为。

正确的解决方案是只设置远程推送通知,我使用 Parse 来做到这一点。现在它按预期工作。我有一个使用 Parse REST API 向 Parse 发送 POST 请求的网络服务器,然后我的 iOS 应用程序被设置为接收远程推送通知,现在当我的手机被锁定时,这些通知会显示在我的 watch 上。

关于ios - 发送到后台的本地通知在模拟器中有效,但在设备上无效,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33375260/

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