Высота в UITableviewcell

У меня есть настраиваемая ячейка просмотра таблицы.

Я могу установить высоту этой ячейки в этом методе.

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

Но возможно ли динамически изменять высоту в файле uitableviewcell (например, FlightDetailCell.m)

4 ответа

Необходимо рассчитать высоту ячейки в - (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath; когда вы перезагружаете выше, метод будет вызываться inorder для установки обновленной высоты. На этот раз вам нужно пройти обновленную динамическую высоту.

Да, вы можете, но вы должны позвонить - (void)[reloadData]; обновить представление таблицы.

Смотрите reloadData

Вы можете сделать это с помощью пользовательского делегата ячейки:

попробовать мой пример:

  • создать новый проект с одним контроллером вида 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

В iOS8 была представлена ​​функция Self-Sizing Cells. Я предоставил учебник об этом также объяснил, что происходит подкапотным. Это довольно просто и ускорит ваше время разработки.

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

Другие вопросы по тегам