Invite user UI is always hidden by the keyboard (#6348)

* Invite user UI is always hidden by the keyboard

- fixed
This commit is contained in:
Gil Eluard
2022-07-01 10:32:57 +02:00
committed by GitHub
parent 55685f10b1
commit 437b2eafd6
4 changed files with 18 additions and 10 deletions
@@ -115,6 +115,15 @@
}];
[self userInterfaceThemeDidChange];
if (@available(iOS 15.0, *))
{
[[_contactsTableView.bottomAnchor constraintEqualToAnchor:self.view.keyboardLayoutGuide.topAnchor] setActive:YES];
}
else
{
[[_contactsTableView.bottomAnchor constraintEqualToAnchor:self.view.bottomAnchor] setActive:YES];
}
}
- (void)userInterfaceThemeDidChange