Есть ли способ преобразования массива типа Dictionary.Values?в одномерный массив типа String?
Код:
docRef.getDocument { (document, error) in
if let document = document, document.exists {
let dataDescription = document.data()?.values // Type 'Dictionary<String, Any>.Values?'
self.array.append(dataDescription) // Tried dataDescription.values, but it doesn't work
print("Document data: \(String(describing: dataDescription))")
} else {
print("Document does not exist")
}
}