私はTableViewでカスタムセルを使用しています。可変高さのカスタムセル
セルの高さは、セルのUILabelにロードされているNSStringに基づいて計算されます。 サイズは
(CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath;
{
NSString *text = [self getTableViewRow:tableView index:indexPath];
CGSize constraint = CGSizeMake(CELL_CONTENT_WIDTH - (CELL_CONTENT_MARGIN * 2), 20000.0f);
CGSize size = [text sizeWithFont:[UIFont systemFontOfSize:FONT_SIZE] constrainedToSize:constraint lineBreakMode:UILineBreakModeWordWrap];
CGFloat height = MAX(size.height, 44.0f);
return height + (CELL_CONTENT_MARGIN * 2) + 60;
}
サイズを正しく計算が、細胞がのUITableViewにロードされたときに、行が正しい高さを有しているが、細胞が持っていない。この機能を使用して計算されます。
私は私のセル
//Com Custom Cell
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *simpleTableIdentifier = @"CustomCellIdentifier";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:simpleTableIdentifier];
if (cell == nil)
{
NSArray *nib = [[NSBundle mainBundle] loadNibNamed:@"CustomCellApresentacao" owner:self options:nil];
if ([nib count] > 0)
cell = self.tvCell;
else
NSLog(@"Falhou a carregar o xib");
}
NSInteger row = [indexPath row];
if(self.myTableView1 == tableView)
labelDescricaoApresentacao.text = [listData1 objectAtIndex:row];
else if (self.myTableView2 == tableView)
labelDescricaoApresentacao.text = [listData2 objectAtIndex:row];
else
labelDescricaoApresentacao.text = [listData3 objectAtIndex:row];
return cell;
}
を作成する場所です私は
cell.frame.size.height
を使用して、この方法では、セルの高さを変更しようとしましたが、それはまだ正しいheigthをロードdidn't。
私はcustomCellのxibで何かする必要がありますか? セルの高さを同じサイズに更新するにはどうすれば行がありますか?
cell.frame.size.height = 30.0fを入力した場合など、「表現が割り当てられない」というエラーが表示されます。 – bruno
cell.frame = CGRectMake(0,0、width、height) – NeverBe
ああもちろん、修正のおかげで – picciano