作者热门文章
- Java 双重比较
- java - 比较器与 Apache BeanComparator
- Objective-C 完成 block 导致额外的方法调用?
- database - RESTful URI 是否应该公开数据库主键?
我在法国,当我尝试新的 func locationManager
函数时,我的 map View 将我定位在旧金山。有什么想法吗?
override func viewDidLoad() {
super.viewDidLoad()
if (CLLocationManager.locationServicesEnabled())
{
locationManager = CLLocationManager()
locationManager.delegate = self
locationManager.desiredAccuracy = kCLLocationAccuracyBest
locationManager.distanceFilter = kCLDistanceFilterNone
locationManager.requestAlwaysAuthorization()
locationManager.startUpdatingLocation()
}
}
func locationManager(manager: CLLocationManager!, didUpdateLocations locations: [AnyObject]!) {
let location = locations[locations.count-1] as CLLocation
let center = CLLocationCoordinate2D(latitude: location.coordinate.latitude, longitude: location.coordinate.longitude)
let region = MKCoordinateRegion(center: center, span: MKCoordinateSpan(latitudeDelta: 0.01, longitudeDelta: 0.01))
self.map.setRegion(region, animated: true)
}
我正在使用模拟器。
最佳答案
iOS 模拟器默认为美国 - 旧金山,并且不会为您提供 Mac 实际位置的估计值。
但是您可以像这样模拟移动甚至特定位置:
在模拟器的调试菜单下,最后一个条目是“位置”;这为您提供了一个子菜单:
骑自行车、City Run 和 Freeway Drive 是对移动位置的模拟(当然是在库比蒂诺)。
关于swift - 错误的位置 - 位于旧金山而不是法国,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25460438/
UIFont.systemFontOfSize(20, weight: UIFontWeightUltraLight) 当我将此字体与 UIFontWeightUltraLight 一起使用时,只有当
我是一名优秀的程序员,十分优秀!