我试图将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
}