2013-04-10 56 views

回答

0

試試吧....
克里特圖像陣列,並使用下面的代碼。

cell.imageView.image = [UIImage imageNamed:[myImageArray objectAtIndex:indexPath.row]]; 

它根據indexPath.row
希望設置你的細胞圖像這有助於

+0

我的朋友我想根據格式文件(.mp4&.mp3&.wmv&....)在我的單元格中設置圖像no根據indexPath.row – MohammadK 2013-04-10 12:46:54

+0

@MohammadK:只需將您的圖像按序列排列,它的工作。 – 2013-04-10 12:48:38

+0

好的我的朋友謝謝 – MohammadK 2013-04-10 13:06:14

0

如果你想在UITableViewCell上添加UIIimageView。試試這個代碼把它放到

- (UITableViewCell *)tableView:(UITableView *)tableView 
      cellForRowAtIndexPath:(NSIndexPath *)indexPath 
    { 
     static NSString *MyIdentifier = @"MyIdentifier"; 

     UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:MyIdentifier]; 

     if (cell == nil) 
     { 
      cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault 
              reuseIdentifier:MyIdentifier] autorelease]; 
     } 
    UIImageView *imv = [[UIImageView alloc]initWithFrame:CGRectMake(2,2, 20, 20)]; 
    imv.image= [UIImage imageNamed:[yourArray objectAtIndex:indexPath.row]]; 
    [cell addSubview:imv]; 
    [imv release]; 

標準UITableViewCell中已經包含如果圖像設置顯示到左邊所有標籤的UIImageView。您可以使用ImageView的屬性來訪問它:

cell.imageView.image = [UIImage imageNamed:[yourArray objectAtIndex:indexPath.row]]; 
+0

我要添加許多像許多格式的文件(例如,當我的文件的MP4使用的形象是MP4或等) – MohammadK 2013-04-10 12:20:14

+0

沒有得到你請改善,因爲你在UITableViewCell上添加UIImageView這裏是代碼 – Buntylm 2013-04-10 12:24:46

+0

你能解釋更多嗎? – MohammadK 2013-04-10 12:31:58

相關問題