我創建了具有許多單元格的表格視圖。如何在格式文件中的單元格表格視圖中添加圖像
我想爲格式文件中此圖像定義的任何單元格設置圖像。 (例如我想爲許多格式文件添加許多圖像(例如,當我的文件是.mp4使用圖像,即mp4或等))
我該怎麼辦?
我創建了具有許多單元格的表格視圖。如何在格式文件中的單元格表格視圖中添加圖像
我想爲格式文件中此圖像定義的任何單元格設置圖像。 (例如我想爲許多格式文件添加許多圖像(例如,當我的文件是.mp4使用圖像,即mp4或等))
我該怎麼辦?
試試吧....
克里特圖像陣列,並使用下面的代碼。
cell.imageView.image = [UIImage imageNamed:[myImageArray objectAtIndex:indexPath.row]];
它根據indexPath.row
希望設置你的細胞圖像這有助於
如果你想在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]];
我的朋友我想根據格式文件(.mp4&.mp3&.wmv&....)在我的單元格中設置圖像no根據indexPath.row – MohammadK 2013-04-10 12:46:54
@MohammadK:只需將您的圖像按序列排列,它的工作。 – 2013-04-10 12:48:38
好的我的朋友謝謝 – MohammadK 2013-04-10 13:06:14