NSDictionary *dictionary = @{@\"A\" : @\"alfa\", @\"B\" : @\"bravo\", @\"C\" : @\"charlie\",
Casting a dictionary to 'AnyObject' was the simplest solution for me:
let dictionary = ["a":"b", "c":"d", "e":"f"] print("This is the console output: \(dictionary as AnyObject)")
This is easier to read for me than the dump option, but note it won't give you the total number of key-values.