Room participants screen: fix scrolling issue

This commit is contained in:
giomfo 2015-08-27 11:30:23 +02:00
parent e0d4d056da
commit a34135a3b3

View file

@ -52,6 +52,13 @@
self.delegate = self;
}
- (void)viewDidLayoutSubviews
{
UIEdgeInsets contentInset = self.tableView.contentInset;
contentInset.bottom = self.bottomLayoutGuide.length;
self.tableView.contentInset = contentInset;
}
- (void)dealloc
{
selectedMember = nil;