How can I cast an array initially declared as container for Any object to an array of Strings (or any other object)? Example :
var array: [Any] = []
.
.
.
array = strings // strings is an array of Strings
I receive an error : "Cannot assign value of type Strings to type Any"
How can I do?