我正在學習swift中的用戶本地化。我試圖在控制檯上打印本地化(以後我會用它來獲取標籤上的信息,所以我想檢查它是否有效),但我不知道爲什麼它不打印任何內容。即使將轉換刪除到字符串,並且只是爲了打印任何內容,它仍然不起作用。請幫忙。CLLocationManager問題
是的,我加了NSLocationAlwaysUsageDescription
和 NSLocationWhenInUseUsageDescription
。
import UIKit
import CoreLocation
import MapKit
class ViewController: UIViewController, CLLocationManagerDelegate {
var locationManager = CLLocationManager()
var myPosition = CLLocationCoordinate2D()
override func viewDidLoad() {
super.viewDidLoad()
locationManager.delegate = self
locationManager.requestWhenInUseAuthorization()
locationManager.startUpdatingLocation()
}
override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
}
func locationManager(manager: CLLocationManager, didUpdateToLocation newLocation: CLLocation, fromLocation oldLocation: CLLocation) {
print("Got location: \(newLocation.coordinate.latitude), \(newLocation.coordinate.longitude)")
myPosition = newLocation.coordinate
locationManager.stopUpdatingLocation()
}
}
您是否仔細檢查了應用設置應用中的「位置設置」?也許當你第一次運行它時,你意外地轉向了這個應用程序的位置設置。檢查'authorizationStatus',看看它返回什麼。此外,請確保您在物理設備上進行測試,因爲模擬器的行爲與物理設備不同。 – Rob
沒有幫助...... – belab
另外,術語「本地化」通常是指國際化(語言,數字/日期格式化程序等)。你問的是「位置服務」,而不是「本地化」。 – Rob