How do you unwrap a string that is returned as:
(Optional(Optional \"blue\"))
var cityName = String() if let cityAnno =
Try
var a:String?? = "1" print((a)) if let b = a,c = b{ print(c) }
Screenshot of playground
Also you can force unwrap,but it it is not secure
let d = a!!