mirror of
https://gitlab.opencode.de/bwi/bundesmessenger/clients/bundesmessenger-ios.git
synced 2026-04-21 17:12:45 +02:00
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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user