Set UITableViewAutomaticDimension for estimatedRowHeight.

Signed-off-by: Ivan Sein <ivan@nextcloud.com>
This commit is contained in:
Ivan Sein 2024-11-21 22:53:04 +01:00
Родитель 66a1a6e0b9
Коммит 1e9e035748
2 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -36,7 +36,7 @@ typedef enum RoomSearchSection {
[super viewDidLoad];
[self.tableView registerNib:[UINib nibWithNibName:RoomTableViewCell.nibName bundle:nil] forCellReuseIdentifier:RoomTableViewCell.identifier];
self.tableView.rowHeight = UITableViewAutomaticDimension;
self.tableView.estimatedRowHeight = 100;
self.tableView.estimatedRowHeight = UITableViewAutomaticDimension;
self.tableView.tableFooterView = [[UIView alloc] initWithFrame:CGRectZero];
// Align header's title to ContactsTableViewCell's label
self.tableView.separatorInset = UIEdgeInsetsMake(0, 52, 0, 0);

Просмотреть файл

@ -87,7 +87,7 @@ typedef enum RoomsSections {
self.tableView.separatorInsetReference = UITableViewSeparatorInsetFromAutomaticInsets;
self.tableView.rowHeight = UITableViewAutomaticDimension;
self.tableView.estimatedRowHeight = 100;
self.tableView.estimatedRowHeight = UITableViewAutomaticDimension;
self.tableView.tableFooterView = [[UIView alloc] initWithFrame:CGRectZero];
_resultTableViewController = [[RoomSearchTableViewController alloc] initWithStyle:UITableViewStyleInsetGrouped];