我试图在我的桌子上增加一个形象:
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
}
NSString *ligneTableau = [NSString stringWithFormat:@"%@", [[tableau objectAtIndex:indexPath.row] label]];
cell.textLabel.text=ligneTableau; // Configure the cell.
cell.imageView.image = [UIImage imageNamed:[NSString stringWithFormat:@"images/sections/%@.png", [[tableau objectAtIndex:indexPath.row] key]]];
return cell;
}
i NS Carlo(a) 显示图像,即获得优素(“images/sections/name.png”)。 我的所有图像都列在我的项目的“影子”中,作为“images/sections/name.png”。
但是,我的图像没有出现在我的行文上,但如果用我项目根基的图像文档名称取代图像/科/%@.png的话,它就发挥了作用。
为什么不能读一下我的分层形象?
感谢你(我是开端人)