if let placemark = location.placemark {
var text = ""
if let s = placemark.subThoroughfare {
text += s + " "
}
if let s = placemark.thoroughfare {
text += s + ", "
}
if let s = placemark.locality {
text += s
}
addressLabel.text = text
} else {
addressLabel.text = String(format:
"Lat: %.8f, Long: %.8f", location.latitude, location.longitude)
}
}
Also, sharing a download link to your project is the easiest way to get help with a crash since then anybody interested can download it and experience the crash for themselves and then be able to help you faster
The most likely culprit would be that you forgot to connect descriptionLabel to its outlet in the storyboard. Check the storyboard to see if you’ve correctly connected the label to its outlet.
If that is correct, then probably uploading a copy of your project somewhere (like DropBox) and then providing a link to that so others can download it and try out the code might help. Simply copy the whole project folder to DropBox, or ZIP up the project folder and then upload the ZIP file to DropBox. Then you can get a link from DropBox that you can share with others. There are also other services besides DropBox which would allow you to do essentially the same thing