Could anyone answer this question about swift code please?Because not every raw value will return an enumeration case, the raw value initializer for an enumeration has to be a failable initializer.Given the following:var color = RainbowColor(rawValue: 6)What type is color?ColorColor?Color!IntInt?Int!RainbowColorRainbowColor?RainbowColor!

Respuesta :

ACCESS MORE