if let key = self.dictionary["key"] { print(key) // returns value } // OR extension Dictionary { func contains(key: Key) -> Bool { self.index(forKey: key) != nil } }