I\'m trying to run for loop in an Array of dictionaries. But I\'m getting this error:
Any is not convertible to NSDictionary
Here is my implem
If you can guarantee that your content is an array of NSDictionary, you can:
content
NSDictionary
for contentDic:NSDictionary in content as! [NSDictionary] { print(contentDic) }