0

我试图弄清楚如何使用 Pixate 更改 UITableView 中的单元格高度。根据pixate 文档,有一个row-height

我试过了:

设置UITableView styleIdmyTable和:

#myTable {
   row-height: 50px;
}

但这似乎并没有奏效。

我读错了文档吗?

4

2 回答 2

1

您需要实施

-(CGFloat)tableView:(UITableView*)tableView heightForRowAtIndexPath:(NSIndexPath*) indexPath 
{
    if ([expandedPaths containsObject:indexPath]) {
        return 80;
    } else {
        return 44;
    }
 }

UITableViewDelegate 中的方法。

于 2013-05-08T08:14:36.113 回答
1

tableView:heightForRowAtIndexPath:我会使用 pixate 引擎的方法和其他类型的样式来更改高度行。此外,您应该小心 UITableViewCell 和 UITableView 行高中的 IB。我认为这篇文章也很有用:Styling with Engine。它有一个有趣的例子(包括源代码)。

快乐编码!

于 2013-05-08T08:50:04.570 回答