func parseResponseData(response: AnyObject) {
if let feedData = response["feed"] as? [String: Any]{
let entryArray = feedData["entry"] as Any
if let entry = entryArray as? [Any]{
for object in entry{
print(object)
let appName = object["category"] as [String: Any] // Error: Type "Any" has no subscript members.
}
}
}
}
I am not able to parse the response because of this error, any clue how to resolve this.