UITableviewcell中的高度

时间:2014-07-31 03:12:03

标签: ios uitableview heightforrowatindexpath

我的tableview中有自定义tableviewcell。

我可以在此方法中设置该单元格的高度。

- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath;
{ }

但是,是否可以在uitableviewcell文件中动态更改高度(例如FlightDetailCell.m)

4 个答案:

答案 0 :(得分:1)

是的,你可以,但你必须致电- (void)[reloadData];来更新表格视图。

请参阅reloadData

答案 1 :(得分:1)

当你重新加载上述方法时,有必要计算- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath;中单元格的高度,以便设置更新后的高度。那个时候你需要传递更新的动态高度。

答案 2 :(得分:1)

您可以使用自定义单元格委托执行此操作:

试试我的例子:

  • 使用名为ViewController
  • 的单个视图控制器创建新项目
  • 将示例中的代码粘贴到.m文件
  • 创建名为TableViewCell
  • 的自定义单元格
  • 将代码粘贴到.h和.m文件
  • 跑步并按下牢房。它的高度会改变=)
希望它有所帮助!

示例:

使用表格视图实现视图控制器:

#import "ViewController.h"
#import "TableViewCell.h"

@interface ViewController ()<UITableViewDataSource, UITableViewDelegate, TableViewCellDelegate>
{
    UITableView* m_tableView;
    NSMutableArray* m_arrayOfCellHeight;
}

@end

@implementation ViewController

#define kCellCount 3
#define kDefaultCellHeight 44
#define kCellIdentifier @"kCellIdentifier"

- (void)viewDidLoad
{
    [super viewDidLoad];
    // Do any additional setup after loading the view, typically from a nib.
    m_tableView = [[UITableView alloc] initWithFrame:CGRectMake(0, 60, 320, 300)];
    m_tableView.delegate = self;
    m_tableView.dataSource = self;
    [self.view addSubview:m_tableView];

    m_arrayOfCellHeight = [NSMutableArray new];

    for (int i = 0; i < kCellCount; i++)
        [m_arrayOfCellHeight addObject:@(kDefaultCellHeight)];
}

- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
{
    return [m_arrayOfCellHeight[indexPath.row] floatValue];
}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
    return 3;
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    TableViewCell* _cell = [tableView dequeueReusableCellWithIdentifier:kCellIdentifier];
    if (!_cell)
    {
        _cell = [[TableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:kCellIdentifier];
    }
    _cell.textLabel.text = @"press me";
    _cell.delegate = self;
    return _cell;
}

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
    [(TableViewCell*)[m_tableView cellForRowAtIndexPath:indexPath] changeHeight];
}

- (void)cell:(TableViewCell *)cell didChangeHeight:(CGFloat)height
{
    NSIndexPath *indexPath = [m_tableView indexPathForCell:cell];
    m_arrayOfCellHeight[indexPath.row] = @(height);
    [m_tableView beginUpdates];
    [m_tableView endUpdates];
}

@end

小区界面:

#import <UIKit/UIKit.h>

@protocol TableViewCellDelegate;
@interface TableViewCell : UITableViewCell

@property (nonatomic, weak) id<TableViewCellDelegate> delegate;
- (void) changeHeight;

@end

@protocol TableViewCellDelegate <NSObject>

- (void) cell:(TableViewCell*)cell didChangeHeight:(CGFloat)height;

@end

实施细胞:

@implementation TableViewCell

- (void) changeHeight
{
    if (self.delegate && [self.delegate respondsToSelector:@selector(cell:didChangeHeight:)])
    {
        CGFloat _float = rand()%70 + 30;
        [self.delegate cell:self didChangeHeight:_float];
    }
}

@end

答案 3 :(得分:1)

iOS8中的

自定义单元格功能已被引入。我提供了一个关于它的教程,也解释了发生什么事情。它非常简单,可以缩短您的开发时间。

http://kemal.co/index.php/2014/07/an-example-of-self-sizing-cells-introduced-in-ios8/