嗨,我需要以編程方式在UITableViewCells
中添加不同的圖像。我該怎麼做,我正在嘗試一些代碼。但圖像不顯示在UITableViewCells
。 這是我的代碼如下。請幫助任何人。提前致謝。如何在UITableviewcells中以編程方式添加圖像
-(void)viewDidLoad
{
arrImages=[[NSMutableArray alloc]initWithObjects:@"image.png",@"image2.png",@"image3.png",@"image4.png",@"image5.png",@"image6.png",@"image7.png",@"image8.png" nil];
}
-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *[email protected]"cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:identifier];
if (cell == nil)
{
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:@"identifier"];
}
imgView = [[UIImageView alloc] initWithFrame:CGRectMake(0, 0, 48, 48)];
cell.imageView.image = [UIImage imageNamed:[arrImages objectAtIndex:indexPath.row]];
return cell;
}
請顯示您的實際代碼。這甚至不會編譯。 – jrturton
請檢查圖像localtion。轉到項目構建階段 - >複製包資源添加應用程序包中的所有圖像。 – Musthafa
請幫助我的任何機構.... – user3222991