幾種設置UITableView的cell動態高度的方法

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

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

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

 

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

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

  1. - (CGFloat)tableView:(UITableView *)tableViewheightForRowAtIndexPath:(NSIndexPath *)indexPath {
  2.        return 64;
  3. }
下面介紹如何擴大當前單元格並且縮小其他單元格:
  1. // Somewhere in your header:
  2. NSIndexPath *selectedCellIndexPath;

  3. // And in the implementation file:
  4. - (void)tableView:(UITableView *)tableViewdidSelectRowAtIndexPath:(NSIndexPath *)indexPath {
  5.        selectedCellIndexPath = indexPath;

  6.        // Forces the table view to callheightForRowAtIndexPath
  7.     [tableView reloadRowsAtIndexPaths:[NSArrayarrayWithObject:indexPath]withRowAnimation:UITableViewRowAnimationNone];
  8. }

  9. - (CGFloat)tableView:(UITableView *)tableViewheightForRowAtIndexPath:(NSIndexPath *)indexPath {
  10.        // Note: Some operations like calling [tableViewcellForRowAtIndexPath:indexPath]
  11.        // will call heightForRow and thus create astack overflow
  12.        if(selectedCellIndexPath != nil
  13.              && [selectedCellIndexPathcompare:indexPath] == NSOrderedSame)
  14.               return 128;

  15.        return 64;
  16. }

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

reloadRowsAtIndexPaths是在3.0.存儲NSIndexPath的原因是因爲不可能在堆棧不溢出的情況下在heightForRowAtIndexPath調用類方法例如cellForRowAtIndexPath




較好的方法:


- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
 
    static NSString *CellIdentifier = @"Cell";
 
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
    if (cell == nil) {
        cell = [[[UITableViewCell alloc] initWithFrame:CGRectZero reuseIdentifier:CellIdentifier] autorelease];
        UILabel *label = [[UILabel alloc] initWithFrame:CGRectZero];
        label.tag = 1;
        label.lineBreakMode = UILineBreakModeWordWrap;
        label.highlightedTextColor = [UIColor whiteColor];
        label.numberOfLines = 0;
        label.opaque = NO; // 選中Opaque表示視圖後面的任何內容都不應該繪製
        label.backgroundColor = [UIColor clearColor];
        [cell.contentView addSubview:label];
        [label release];
    }
 
    UILabel *label = (UILabel *)[cell viewWithTag:1];
    NSString *text;
    text = [textArray objectAtIndex:indexPath.row];
    CGRect cellFrame = [cell frame];
    cellFrame.origin = CGPointMake(0, 0);
 
    label.text = text;
    CGRect rect = CGRectInset(cellFrame, 2, 2);
    label.frame = rect;
    [label sizeToFit];
    if (label.frame.size.height > 46) {
        cellFrame.size.height = 50 + label.frame.size.height - 46;
    }
    else {
        cellFrame.size.height = 50;
    }
    [cell setFrame:cellFrame];
 
    return cell;
}
 
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
{
    UITableViewCell *cell = [self tableView:tableView cellForRowAtIndexPath:indexPath];
    return cell.frame.size.height;
}

 

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章