3

我正在开发简单的待办事项应用程序,它使用CLRegion.UILocalNotification

这是我用来安排本地通知的代码:

    var schedule = false
    let notification = UILocalNotification()

    /// Schedlue with date
    if let reminder = self.dateReminderInfo {
        schedule = true
        notification.fireDate = reminder.fireDate
        notification.repeatInterval = reminder.repeatInterval
        notification.alertBody = self.title
    }

    /// Schedule with location
    if let reminder = self.locationReminderInfo {
        schedule = true
        let region = CLCircularRegion(circularRegionWithCenter: reminder.place.coordinate, radius: CLLocationDistance(reminder.distance), identifier: taskObjectID)
        region.notifyOnEntry = reminder.onArrive
        region.notifyOnExit = reminder.onArrive
        notification.region = region
        notification.regionTriggersOnce = false
    }

    /// Schedule
    if schedule {
        notification.userInfo = ["objectID": taskObjectID]
        UIApplication.sharedApplication().scheduleLocalNotification(notification)
    }

安排日期工作。我安排通知,退出应用程序,并在适当的时间在屏幕上显示通知,太好了。问题是当我在安排位置通知时。我以米为单位传递坐标和半径(例如 100 米)。该应用程序没有显示任何内容。我在家里测试它,将点放置在 1 公里的距离并到达那里。没有显示通知。我也在玩模拟器,并将位置从那里的可用位置更改为我的位置附近的自定义位置并返回。没有显示通知。问题出在哪里?

在 AppDelegate 我正在注册通知:

    application.registerUserNotificationSettings(UIUserNotificationSettings(forTypes: UIUserNotificationType.Sound | UIUserNotificationType.Alert | UIUserNotificationType.Badge, categories: nil))

这是位置服务的代码。

func startLocationService() {

    self.locationManager = CLLocationManager()
    self.locationManager.delegate = self
    self.locationManager.desiredAccuracy = kCLLocationAccuracyBest

    let status = CLLocationManager.authorizationStatus()
    if status == CLAuthorizationStatus.AuthorizedWhenInUse || status == CLAuthorizationStatus.Denied {
        let title = (status == CLAuthorizationStatus.Denied) ? "Location services are off" : "Background location is not enabled"
        let message = "To use background location you must turn on 'Always' in the Location Services Settings"

        let alertController = UIAlertController(title: title, message: message, preferredStyle: UIAlertControllerStyle.Alert)

        /// Settings
        alertController.addAction(UIAlertAction.normalAction("Settings", handler: { _ in
            UIApplication.sharedApplication().openURL(NSURL(string: UIApplicationOpenSettingsURLString)!)
            return
        }))

        /// Cancel
        alertController.addAction(UIAlertAction.cancelAction(String.cancelString(), handler: nil))

        self.presentViewController(alertController, animated: true, completion: nil)
    } else if status == CLAuthorizationStatus.NotDetermined {
        /// nothing
    }

    self.locationManager.requestAlwaysAuthorization()
    self.locationManager.requestWhenInUseAuthorization()

    self.locationManager.startUpdatingLocation()
}

CLLocationManager 正在工作,因为我有经常调用的委托方法。

/// Mark: CLLocationManagerDelegate
func locationManager(manager: CLLocationManager!, didUpdateLocations locations: [AnyObject]!) {
    if let location = locations.first as? CLLocation {
        self.navigationItem.title = "\(location.coordinate.latitude)" + " " + "\(location.coordinate.longitude)"
        println(self.navigationItem.title)
    }
}

我正在尝试第二天解决问题,但找不到好的解决方案如何在用户出现在该地点或离开该地点时显示本地通知。我不知道使用UILocalNotification region属性是否对这个解决方案有好处,或者我应该创建一种机制来搜索我保存在应用程序中的位置,并在每次位置更改时检查。对此主题的任何评论也表示赞赏;)

先感谢您。

4

2 回答 2

1

我看到你没有注册通知

让设置= UIUserNotificationSettings(forTypes:notificationType,类别:类别)application.registerUserNotificationSettings(设置)

您可以在此处找到更多信息iOS 8 Notifications in Swift和此处CoreLocation and region Monitoring

于 2015-02-11T19:31:19.603 回答
0

我遇到了同样的问题,但是我找到了一种触发通知的方法。看起来它没有响应半径参数。我触发通知的方式是模拟离我所在地区很远的位置。

因此,如果我将区域设置为丹麦的一个小城市,并将我的位置移动 1 公里,然后再返回,它不会触发。但是,如果我将区域设置为丹麦的同一个小城市,并将我的位置移动到伦敦并再次返回,那么它将触发。

所以对我来说,半径参数似乎被忽略了?我在 250.0、100.0、10.0、0.0001 上尝试了半径,它根本没有影响。

这可能会启发其他人了解问题可能是什么以及如何解决它?

于 2015-04-23T13:39:38.247 回答