I need to sort an array of dictionaries in the following ways. The array contains dictionaries with the following format:
[{ fecha = \"09:54:51\"; \"nomb
You can use the sort method the following way:
myArray.sort { $0["numero"]! < $1["numero"]! }