我是這個iPhone開發的新手。正在開發目錄應用程序。因爲我的圖像來自Web服務,所以我需要將產品圖像的所有產品詳細信息作爲tableview單元格圖像動態顯示。我這樣做,iphone sdk如何動態添加uitableview細胞圖像?
NSString* imageName = [NSString stringWithFormat:@"%@",[[stories objectAtIndex:indexPath.row]objectForKey:@"product_thumb_image"]];
cell.imageView.image.size.width==20;
cell.imageView.image.size.height==20;
cell.imageView.image = [UIImage imageNamed:imageName];
NSLog(@"imagename:%@",[[stories objectAtIndex:indexPath.row]objectForKey:@"product_thumb_image"]);
我得到我的控制檯窗口中的所有圖像,我檢查使用nslog。但我沒有用模擬器獲得圖像。這是什麼做錯了?你們能幫助我嗎?
在此先感謝。