如何将双精度值从 json 转换为函数
Posted
技术标签:
【中文标题】如何将双精度值从 json 转换为函数【英文标题】:How to convert and set double values from json to function 【发布时间】:2021-01-20 13:36:10 【问题描述】:我的问题是:使用 alamofire,我需要在位置变量中将坐标传递给函数 (longitude, latitude) 。我成功获取了数据,但我无法将其添加到函数中。该函数在 MapViewController.swift 中称为“showSomeMarkers”。谢谢!
代码:
class MapViewController: UIViewController
@IBOutlet var tableView: UITableView!
@IBOutlet var googleMapView: GMSMapView!
fileprivate var coordinates = [Model]()
@IBAction func dismissAction(_ sender: Any)
dismiss(animated: true, completion: nil)
func getValues()
Networking.shared.getAllValues(value: "/kyiv/places") coordinates in
self.coordinates = coordinates
self.tableView.reloadData()
func showMarker (position: CLLocationCoordinate2D)
let marker = GMSMarker()
marker.position = position
marker.title = "Kiev"
marker.snippet = "Capital of Ukraine"
marker.map = googleMapView
//THIS FUNCTION
func showSomeMarkers ()
let position = CLLocationCoordinate2D(latitude: 50 , longitude: 30)
let marker = GMSMarker(position: position)
marker.title = "Some title"
marker.map = googleMapView
override func viewDidLoad()
super.viewDidLoad()
let camera = GMSCameraPosition(latitude: 50.45, longitude: 30.52, zoom: 5.7)
googleMapView.camera = camera
self.showMarker(position: googleMapView.camera.target)
getValues()
showSomeMarkers()
extension MapViewController: UITableViewDelegate , UITableViewDataSource
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int
coordinates.count
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell
let cell = tableView.dequeueReusableCell(withIdentifier: "Cell" , for: indexPath) as! Cell
let value = coordinates[indexPath.row]
cell.configureValues(value: value)
print(value)
return cell
型号:
class Model: NSObject
var name: String
var lat: Double
var lng: Double
init(with modelDictionary: [String: Any])
name = modelDictionary["name"] as? String ?? ""
lat = modelDictionary["lat"] as? Double ?? 0.0
lng = modelDictionary["lng"] as? Double ?? 0.0
单元格:
class Cell: UITableViewCell
@IBOutlet var nameLabel: UILabel!
var latitude: Double?
var longitude: Double?
var name: String?
func configureValues(value: Model)
nameLabel.text = value.name
latitude = value.lat
longitude = value.lng
由于表格视图需要来自 Json 的 1 个数据类型字符串,因此我在单元格中配置值。请帮忙。谢谢!
【问题讨论】:
请告诉我你真正想要什么?您从服务器获得的纬度和经度的数据类型是什么?您的问题陈述不清楚? 抱歉,用您自己的语言以外的语言表达想法非常困难。 Lotitude 和 longitude 有 double 类型(该函数也应该有 double 类型,但我忘了删除 int)。我需要获取经度和纬度(双精度类型)的值并将它们注入到函数中。我无法提供此数据的正确路径。另外,我需要做 3 个标记,我可能需要创建一个数组,我不知道。此链接是我的 json:3lolo.github.io/lat_lng.json,希望对您有所帮助。 【参考方案1】:把你的函数改成
func showSomeMarkers (latitude: Double, longitude: Double)
let position = CLLocationCoordinate2D(latitude: latitude , longitude: longitude)
//rest of code
并从 getValues 中的闭包中调用它
func getValues()
Networking.shared.getAllValues(value: "/kyiv/places") coordinates in
self.coordinates = coordinates
for coordinate in self.coordinates
showSomeMarkers(latitude: coordinate.lat, longitude: coordinate.lng)
self.tableView.reloadData()
【讨论】:
谢谢!你是我的救星。 通过坐标而不是纬度/经度不是更容易吗?以上是关于如何将双精度值从 json 转换为函数的主要内容,如果未能解决你的问题,请参考以下文章