您好我正在尝试使用此功能模拟我的iOS模拟器的位置。
该应用程序获取此类位置
var currentLocation: CLLocation?
if (CLLocationManager.authorizationStatus() == CLAuthorizationStatus.AuthorizedWhenInUse || CLLocationManager.authorizationStatus() == CLAuthorizationStatus.AuthorizedAlways) {
currentLocation = manager.location
}
问题是当应用程序启动时执行此代码,然后模拟位置始终重置为空。在通过XCode再次启动应用程序后,我可以强制将此位置设置为相同的值吗?