1

我在.xib中设计了UITableViewCell,它的高度和宽度是:

从 Xcode 中检索 -> 显示尺寸检查器。

Width : 358   Height : 562 

表视图代表:

- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath 
{
    return 800;
 }

我在尝试什么?

在下面的方法中,我试图找到单元格的宽度和高度,以便我可以在单元格中绘制一条垂直线。

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:   (NSIndexPath *)indexPath 
{
  /* FINDING THE WIDTH AND HEIGHT */
   my Custom Cell instance say : cell

   cell.contentView.bounds.size.width   Give  me the value -> 320,
   cell.contentView.bounds.size.height  Gives me the value -> 44,
}

问题?..

如何获得自定义单元格的正确高度/宽度?

如果我的理解有误,请告诉我?

4

1 回答 1

1

您需要覆盖-tableView:willDisplayCell:forRowAtIndexPath:. 在这种方法中,表格视图已经设置了正确的尺寸。

于 2012-11-29T09:39:25.880 回答