зеркало из https://github.com/nextcloud/talk-ios.git
Set UITableViewAutomaticDimension for estimatedRowHeight.
Signed-off-by: Ivan Sein <ivan@nextcloud.com>
This commit is contained in:
Родитель
66a1a6e0b9
Коммит
1e9e035748
|
@ -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];
|
||||
|
|
Загрузка…
Ссылка в новой задаче