[IOS控制台]有关后台定位刷新问题

需求:越狱手机上开发后台位置获取控制台程序,即时位置获取和实时位置获取。
问题:位置获取之后再次获取不会刷新,位置一直是第一次获取的位置信息。
代码:
// 初始化
self.location
.swpLocationMode(SwpLocationRequestAlwaysAuthorization)
// 打开定位
.swpLocationOpenChain()
// 定位失败回调
.swpLocationErrorChain(^(SwpLocation *swpLocation, NSError *error){
NSLog(@“定位失败:%@”, error);
})
// 定位成功,获取定位信息回调
.swpLocationReverseGeocodeChain(^(SwpLocation *swpLocation, SwpLocationModel *model, NSError *error){

       if (!model.locationAddress) {
           
           NSLog(@"定位失败:%@", @"获取蜂窝数据权限问题,数据获取为空,请点击重新定位");
           return;
       }
       
       
   NSLog(@"位置:%@%@%@%@%@%@%@",model.country,model.administrativeArea,model.subAdministrativeArea,model.locality,model.subLocality,model.thoroughfare,model.subThoroughfare);
       
   });