動的TableViewを使用すると、次を使用してセルの高さを設定できることを理解しています... tableView:heightForRowAtIndexPath:
ただし、静的テーブル ビュー (動的ではない) を使用している場合、セクションを使用して、セルの高さをプログラムで 0 に設定したいと考えています。
-(CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath{
//used to set the height of a cell
CGFloat result;
switch(indexPath.section) {
case 0:
{
//How do I get the ROW number in this section?
result = 44;
break;
}
case 1:
{
//this works if I want to set all of the rowels to this height.
result = 250;
break;
}
}
質問は別の方法で、indexPath.section がある場合... どうすれば... indexPath.Section.row のようなことを行うことができますか?