[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
@@ -37,6 +37,13 @@
#define TABBAR_GROUPS_INDEX 4
#define TABBAR_COUNT 5
typedef NS_ENUM(NSUInteger, MasterTabBarIndex) {
MasterTabBarIndexHome = TABBAR_HOME_INDEX,
MasterTabBarIndexFavourites = TABBAR_FAVOURITES_INDEX,
MasterTabBarIndexPeople = TABBAR_PEOPLE_INDEX,
MasterTabBarIndexRooms = TABBAR_ROOMS_INDEX,
MasterTabBarIndexGroups = TABBAR_GROUPS_INDEX
};
@protocol MasterTabBarControllerDelegate;
@@ -194,6 +201,8 @@
// Set tab bar item controllers
- (void)updateViewControllers:(NSArray<UIViewController*>*)viewControllers;
- (void)removeTabAt:(MasterTabBarIndex)index;
@end