16
มีวิธีพิมพ์พจนานุกรม Swift สวย ๆ ลงคอนโซลหรือไม่?
NSDictionary *dictionary = @{@"A" : @"alfa", @"B" : @"bravo", @"C" : @"charlie", @"D" : @"delta", @"E" : @"echo", @"F" : @"foxtrot"}; NSLog(@"%@", dictionary.description); พิมพ์สิ่งต่อไปนี้บนคอนโซล: { A = alfa; B = bravo; C = charlie; D = delta; E = echo; F = foxtrot; } let dictionary: [String : String] = …