辞書にエントリが 1 つしかない辞書の配列があります。
  ___       ___________
 |___| --->|__|__|__|__|  Array of Dictionary
 |___|      __|__
 |___|      |K|V| Dictionary
 |___| 
 Array of Array
My dictionary content is <NSString*, UIImage*>
私の辞書の値を取得する方法。
コードスニペット:
for (int i=0 ; i< [imagesToFill count]; i++) {
    NSDictionary* dict = [imagesToFill objectAtIndex:i];
    UIImage*  img =   ??? [dict]  // How to retrive value from above dict which has only 1 entry
    NSString* imgPath =  ??? 
}
 Note: Each dict has <NSString*, UIImage*>