swift convert string to ns muteable string

Swift
let string = "Hello"
let nsmutablestring = NSMutableString(string: string) // "Hello" as an NSMutableString
Source

Also in Swift: