如何将桌面视图中的纬度和经度数组传递给swift中的地图视图?

时间:2015-10-01 10:22:57

标签: swift

我试图将tableitude的纬度和经度数组传递给mapview但我无法实现,所以请任何人都可以帮我实现。

func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {

    //let cell:NewTableViewCell = tableView.dequeueReusableCellWithIdentifier("Cell", forIndexPath: indexPath) as! NewTableViewCell

    let cell:MyTableViewCell = tableView.dequeueReusableCellWithIdentifier("Cell", forIndexPath: indexPath) as! MyTableViewCell

    cell.citylblTitle.text = recordarray[indexPath.row] as? String

    cell.mapView.description = latitudearray[indexpath.row]



    return cell
}

0 个答案:

没有答案