我有一個表格視圖與分組的單元格。我希望這個單元格包含一個圖像。這裏是我的代碼中插入圖像,使之適合在細胞:不能適合tableViewCell中的圖像
logoCell = [tableView dequeueReusableCellWithIdentifier:LogoCellIdentifier];
if (logoCell == nil) {
logoCell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:LogoCellIdentifier];
}
UIImageView *imgView=[[UIImageView alloc] initWithFrame:CGRectMake(0, 0, logoCell.frame.size.width, 80)];
[imgView setImage:image];
[logoCell.contentView addSubview:imgView];
但我的形象比單電池的寬度大時的tableView是顯示器。我怎樣才能使它適合細胞?
謝謝,這正是我想要的 – louftansa