I need to convert Set into an array of any of [AnyObject] or [String], is this possible? I know that with NSSet I can use .allObjects, but for this there are no functions with my own set
Just force directly to the array:
let arr = Array(mySet)