1. 程式人生 > >總結了幾種設定UITableView的cell動態高度的方法

總結了幾種設定UITableView的cell動態高度的方法

1.UITableView載入的順序是先得到表的行的高度,也就是 先呼叫heightForRowAtIndexPath方法,然後再呼叫cellForRowAtIndexPath,所以我們有兩個辦法實現自定義 cell高度(解決不同section的不同行高問題)。

一:改變它的載入順序,或者說白了就是計算好cell高度後,再次讓它載入heightForRowAtIndexPath方法;

二:直接在heightForRowAtIndexPath計算,做判斷,直接返回對應的高度。

以下是第一種方法的例項:

UITableView設定單元格的高度的方法

  1. - (CGFloat)tableView
    :(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {
  2.         return 64;
  3. }
下面介紹如何擴大當前單元格並且縮小其他單元格:
  1. // Somewhere in your header:
  2. NSIndexPath *selectedCellIndexPath;
  3. // And in the implementation file:
  4. - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
  5.         selectedCellIndexPath = indexPath;
  6.         // Forces the table view to call heightForRowAtIndexPath
  7.     [tableView reloadRowsAtIndexPaths:[NSArrayarrayWithObject:indexPath] withRowAnimation:UITableViewRowAnimationNone];
  8. }
  9. - (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {
  10.         // Note: Some operations like calling [tableView cellForRowAtIndexPath:indexPath]
  11.         // will call heightForRow and thus create a stack overflow
  12.         if(selectedCellIndexPath != nil
  13.                 && [selectedCellIndexPath compare:indexPath] == NSOrderedSame)
  14.                 return 128;
  15.         return 64;
  16. }

reloadRowsAtIndexPaths方法將重新呼叫heightForRowAtIndexPath使單元格改變高度。 

reloadRowsAtIndexPaths是在3.0.儲存NSIndexPath的原因是因為不可能在堆疊不溢位的情況下在 heightForRowAtIndexPath呼叫類方法例如cellForRowAtIndexPath 。