gpt4 book ai didi

ios - Swift 4 CLLocation 用户位置经度和纬度

转载 作者:搜寻专家 更新时间:2023-11-01 06:31:39 25 4
gpt4 key购买 nike

我转换为 Swift 4。我的 tableview 从 firebase 中提取数据并按与用户位置的距离组织它已停止工作。问题是我的用户位置一直显示为零。我听说最近有人因为转换而在 mapkit 上遇到麻烦,但不确定这是否属于同一类别。因此,“let userLocation = CLLocation(latitude: latitude!, longitude: longitude!)”这一行返回 nil。谢谢。

BreakPoint

override func viewDidLoad() {
super.viewDidLoad()

searchController.searchResultsUpdater = self
searchController.dimsBackgroundDuringPresentation = false
definesPresentationContext = true
tableView.tableHeaderView = searchController.searchBar

locationManager.delegate = self
locationManager.distanceFilter = kCLLocationAccuracyNearestTenMeters
locationManager.desiredAccuracy = kCLLocationAccuracyBest
locationManager.startUpdatingLocation()
locationManager.stopUpdatingLocation()
locationManager.requestAlwaysAuthorization()

getTableViewData()

refresher = UIRefreshControl()
refresher.attributedTitle = NSAttributedString(string: "Pull to refresh")
refresher.addTarget(self, action: #selector(RegisteredLocations.handleRefresh(refreshControl:)), for: UIControlEvents.valueChanged)
tableView.addSubview(refresher)
}

func getTableViewData() {
Database.database().reference().child("Businesses").queryOrdered(byChild: "businessName").observe(.childAdded, with: { (snapshot) in

let key = snapshot.key

if(key == self.loggedInUser?.uid) {
print("Same as logged in user, so don't show!")
} else {
if let locationValue = snapshot.value as? [String: AnyObject] {
let lat = Double(locationValue["businessLatitude"] as! String)
let long = Double(locationValue["businessLongitude"] as! String)
let businessLocation = CLLocation(latitude: lat!, longitude: long!)

let latitude = self.locationManager.location?.coordinate.latitude
let longitude = self.locationManager.location?.coordinate.longitude
let userLocation = CLLocation(latitude: latitude!, longitude: longitude!)

let distanceInMeters: Double = userLocation.distance(from: businessLocation)
let distanceInMiles: Double = distanceInMeters * 0.00062137
let distanceLabelText = String(format: "%.2f miles away", distanceInMiles)

var singleChildDictionary = locationValue
singleChildDictionary["distanceLabelText"] = distanceLabelText as AnyObject
singleChildDictionary["distanceInMiles"] = distanceInMiles as AnyObject
self.usersArray.append(singleChildDictionary as NSDictionary)
self.usersArray = self.usersArray.sorted {
!($0?["distanceInMiles"] as! Double > $1?["distanceInMiles"] as! Double)
}

}
//insert the rows
//self.followUsersTableView.insertRows(at: [IndexPath(row:self.usersArray.count-1,section:0)], with: UITableViewRowAnimation.automatic)
self.followUsersTableView.reloadData()
}

}) { (error) in
print(error.localizedDescription)
}

}

最佳答案

您在调用 locationManager.startUpdatingLocation() 后立即调用了 locationManager.stopUpdatingLocation()

这行不通,因为您需要时间来确定位置。在收到对 didUpdateLocations 委托(delegate)方法的调用之前,您不应使用位置。

如果您的目标是 iOS 9 及更高版本并且您只需要一个位置,那么您应该调用 requestLocation() 而不是 startUpdatingLocation() 但您仍然需要等待委托(delegate)方法的回调。

收到位置后,您就可以加载表格数据。

关于ios - Swift 4 CLLocation 用户位置经度和纬度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46480633/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com