I have label and NSMutable Set.
I want to assign my set value to label.text.
@IBOutlet var location: UILabel!
var mutSet:NSMutableSet = NSMutableSet()
self.location.text = **mutSet.allObjects.componetsJoinedByString("\n")**
mutSet.allObjects.componetsJoinedByString("\n") throws compile time error similarly I have tried joined , it also throws compile time error.
Please provide me alternative way in Swift