Convert a String to an array of characters swift 2.0
arrays, character, string, swift, swift2
Solution
var myString = "Hello"
let characters = [Character](myString.characters) // ["H","e","l","l","o"]
Hope this helps
Problem
I need to convert a string into an array of characters. This work in Swift 1.2 and lower but doesn't since Swift 2.0 ``` var myString = "Hello" Array(myString) // ["H", "e", "l", "l", "o"] ```