我试图弄清楚如何使用 Pixate 更改 UITableView 中的单元格高度。根据pixate 文档,有一个row-height
我试过了:
设置UITableView
styleId
到myTable
和:
#myTable {
row-height: 50px;
}
但这似乎并没有奏效。
我读错了文档吗?
我试图弄清楚如何使用 Pixate 更改 UITableView 中的单元格高度。根据pixate 文档,有一个row-height
我试过了:
设置UITableView
styleId
到myTable
和:
#myTable {
row-height: 50px;
}
但这似乎并没有奏效。
我读错了文档吗?
您需要实施
-(CGFloat)tableView:(UITableView*)tableView heightForRowAtIndexPath:(NSIndexPath*) indexPath
{
if ([expandedPaths containsObject:indexPath]) {
return 80;
} else {
return 44;
}
}
UITableViewDelegate 中的方法。
tableView:heightForRowAtIndexPath:
我会使用 pixate 引擎的方法和其他类型的样式来更改高度行。此外,您应该小心 UITableViewCell 和 UITableView 行高中的 IB。我认为这篇文章也很有用:Styling with Engine。它有一个有趣的例子(包括源代码)。
快乐编码!