Swift convertit la chaîne en chaîne mutable ns

let string = "Hello"
let nsmutablestring = NSMutableString(string: string) // "Hello" as an NSMutableString
Nervous Narwhal