[spaces] several fixes for pre release

- [Space view has communities tab at the bottom of the screen](https://github.com/vector-im/element-ios/issues/4846)
This commit is contained in:
Gil Eluard
2021-09-22 18:49:22 +02:00
parent 63a4494569
commit accf8deed7
3 changed files with 36 additions and 1 deletions
@@ -307,6 +307,16 @@
[self.selectedViewController viewDidAppear:NO];
}
- (void)removeTabAt:(MasterTabBarIndex)tag
{
NSInteger index = [self indexOfTabItemWithTag:tag];
if (index != NSNotFound) {
NSMutableArray<UIViewController*> *viewControllers = [NSMutableArray arrayWithArray:self.viewControllers];
[viewControllers removeObjectAtIndex:index];
self.viewControllers = viewControllers;
}
}
#pragma mark -
- (NSArray<MXSession*>*)mxSessions