I am trying to get array of strings form string. It's separate symbols that I want to iterate.
let chars = binaryString.characters.map { String($0) }
for (index, item) in chars {
let activeDay = (index, item)
switch activeDay {
case (Days.Monday.rawValue, "1"):
mondayLabel.textColor = UIColor.blackColor()
case (Days.Monday.rawValue, "0"):
mondayLabel.textColor = UIColor.grayColor()
But Xcode says Expression type '[String]' is ambiguous without more context