Qui è in rapida 4 solo nel caso in cui qualcuno ha bisogno con un UIAlert per entrare il nome del file
func handleCancel(alertView: UIAlertAction!)
{
print("Cancelled !!")
}
let alert = UIAlertController(title: "Export GPX", message: "Enter a name for the file", preferredStyle: .alert)
alert.addTextField { (textField) in
textField.text = ""
}
alert.addAction(UIAlertAction(title: "Cancel", style: .cancel, handler:handleCancel))
alert.addAction(UIAlertAction(title: "Done", style: .default, handler:{ (UIAlertAction) in
if alert.textFields?[0].text != nil {
let fileName = "\(String(describing: alert.textFields![0].text!)).GPX"
let path = NSURL(fileURLWithPath: NSTemporaryDirectory()).appendingPathComponent(fileName)
var gpxText : String = String("<?xml version=\"1.0\" encoding=\"UTF-8\"?><gpx version=\"1.1\" creator=\"yourAppNameHere\" xmlns=\"http://www.topografix.com/GPX/1/1\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns:gte=\"http://www.gpstrackeditor.com/xmlschemas/General/1\" xsi:schemaLocation=\"http://www.topografix.com/GPX/1/1 http://www.topografix.com/GPX/1/1/gpx.xsd\">")
gpxText.append("<trk><trkseg>")
for locations in self.locationsArray{
let newLine : String = String("<trkpt lat=\"\(String(format:"%.6f", locations.locLatitude))\" lon=\"\(String(format:"%.6f", locations.locLongitude))\"><ele>\(locations.locAltitude)</ele><time>\(String(describing: locations.locTimestamp!))</time></trkpt>")
gpxText.append(contentsOf: newLine)
}
gpxText.append("</trkseg></trk></gpx>")
do {
try gpxText.write(to: path!, atomically: true, encoding: String.Encoding.utf8)
let vc = UIActivityViewController(activityItems: [path!], applicationActivities: [])
self.present(vc, animated: true, completion: nil)
} catch {
print("Failed to create file")
print("\(error)")
}
} else {
print("There is no data to export")
}
}))
self.present(alert, animated: true, completion: {
print("completion block")
})
}
func textFieldHandler(textField: UITextField!)
{
if (textField) != nil {
textField.text = ""
}
}
fonte
2017-12-18 01:46:08
Non credo il file GPX viene letto dalla vostra applicazione, più per il simulatore di sé per alimentare posizioni nell'app. C'è una freccia di posizione in Xcode che puoi cliccare per caricare il tuo file GPX. Ci sono anche alcune posizioni predefinite che probabilmente potresti anche guardare. –