var annoying: [String: Any?]
To get the 'height' value, the best I could come up with is this,
let found: String = (annoying["height"] as? String? ?? "?") ?? "?"
That seems very bad, is there a better way?
Indeed, ideally I'd like
let found: String? = :O
So it's nil if the key does not exist -or- the value is nil -or- the value is not a String - but, I literally, don't know how to do that and every attempt failed :/
(I just make do with the "?" marker in the first solution.)
let found: String? = annoying["height", default: ""] as? String?