• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

ios - 基于标准位置的 iOS 应用程序在暂停 IOS 后未唤醒

[复制链接]
菜鸟教程小白 发表于 2022-12-13 12:04:34 | 显示全部楼层 |阅读模式 打印 上一主题 下一主题

我正在开发一个基于位置的应用程序,它应该总是获取用户位置。我使用标准位置服务。但问题是,即使我们移动到其他位置,应用程序在后台保持空闲一段时间后也不会获取坐标。根据苹果文档,当一个新位置到达时,应用程序应该会自动唤醒,但这里不会发生这种情况。我正在共享代码并用于获取我的 plist 的位置和屏幕截图。

  class SALocation: NSObject,CLLocationManagerDelegate
{
    static let sharedInstance : SALocation = SALocation()

    var locationManager : CLLocationManager!
    var location : CLLocation!
    var address : String!
    var latitude : NSString?
    var longitude : NSString?
    var isAdderssLoaded : Bool = false
    var locdictionary : NSMutableDictionary = NSMutableDictionary()

    func startLocationManager()
    {
        if self.locationManager == nil
        {
            self.locationManager = CLLocationManager()

            if CLLocationManager.locationServicesEnabled(){
                print("location service enabled")
            }
            self.locationManager.delegate = self
            self.locationManager.requestWhenInUseAuthorization()
            self.locationManager.distanceFilter = kCLDistanceFilterNone
            self.locationManager.desiredAccuracy = kCLLocationAccuracyBest

            if ( Float (UIDevice.currentDevice().systemVersion) >= 9) {
                if #available(iOS 9.0, *) {
                    self.locationManager.allowsBackgroundLocationUpdates = true
                } else {
                    // Fallback on earlier versions
                };

            }

            self.locationManager.startUpdatingLocation()
            //self.locationManager.stopMonitoringSignificantLocationChanges()
        }
        else
        {
            self.locationManager.startUpdatingLocation()
        }
    }

    // MARK: CLLocationManagerDelegate
    func locationManager(manager: CLLocationManager, didFailWithError error: NSError)
    {
        UIAlertView(title:"Alert", message:error.description, delegate: nil, cancelButtonTitle:nil, otherButtonTitles:"Ok").show()
    }
    func locationManager(manager: CLLocationManager, didUpdateLocations locations: [CLLocation])
    {
        if locations.count > 0
        {
            self.location = locations[0]
            /* storing date and location to plist 

            */

            let datenow = NSDate()
            let dateformatternow = NSDateFormatter ()
            dateformatternow.dateFormat = "yyyyMMdd HH:mm:ss"
            let timenow:NSString = dateformatternow.stringFromDate(datenow)
            let documetsdirectorypath = NSSearchPathForDirectoriesInDomains(NSSearchPathDirectory.DocumentDirectory, NSSearchPathDomainMask.UserDomainMask, true).last
            latitude = NSString(format: "%f",self.location.coordinate.latitude)
            longitude = NSString (format: "%f",self.location.coordinate.longitude)
            let latlong : NSString = NSString(format:"%@~%@",latitude!,longitude!)
            NSUserDefaults.standardUserDefaults().setObject(latlong, forKey: "latlong")
            let aFilePath =  NSString(format: "%@/location.plist",documetsdirectorypath!)
            locdictionary.setObject(latlong, forKey: timenow as String)
            locdictionary.writeToFile(aFilePath as String, atomically: true)
            ///////////// ||storing date and location to plist code ends here||\\\\\\





           // self.getAddressFromLocation(locations[0] )
//            if (NSUserDefaults.standardUserDefaults().objectForKey(SettingAppRefresh) != nil)
//            {
//                if (NSUserDefaults.standardUserDefaults().objectForKey(SettingAppRefresh) as! NSString).isEqualToString(FalseString)
//                {
//                   // self.locationManager.stopUpdatingLocation()
//                }
//            }
        }
    }

  }

我在这里所做的只是获取位置并将其写入 plist 文件。这适用于前景,背景等。但是当我让应用程序闲置 20 分钟时,即使我在应用程序暂停时移动到其他位置,也不会获取位置

enter image description here

功能选项卡如下所示 enter image description here



Best Answer-推荐答案


要在后台启动位置,您必须从以下路径启动后台服务

Click on your name -> Click on your app name (target) -> goto capabilities -> find the background mode -> enable the location update mode

enter image description here

我不确定你是否开始这样做,因为你没有放任何关于这个的截图。

还要检查您的用户是否在设置中启动了后台刷新。请参阅下面的链接。

Background App Refresh checking, enabling and disabling programatically for whole device and for each particular application in iOS 7

更新:: 用于背景中的位置更新链接( objective-c )

http://www.creativeworkline.com/2014/12/core-location-manager-ios-8-fetching-location-background/

关于ios - 基于标准位置的 iOS 应用程序在暂停 IOS 后未唤醒,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33820328/

回复

使用道具 举报

懒得打字嘛,点击右侧快捷回复 【右侧内容,后台自定义】
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

关注0

粉丝2

帖子830918

发布主题
阅读排行 更多
广告位

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap