Remove the TabBarController

This commit is contained in:
giomfo
2015-11-18 00:15:52 +01:00
parent db42bb5130
commit ef28b58abb
13 changed files with 502 additions and 695 deletions
@@ -80,6 +80,14 @@
// Refresh table to remove this account
[self.tableView reloadData];
}];
// Add each matrix session, to update the view controller appearance according to mx sessions state
// FIXME GFO We should observe added/removed matrix sessions during view controller use.
NSArray *sessions = [AppDelegate theDelegate].mxSessions;
for (MXSession *mxSession in sessions)
{
[self addMatrixSession:mxSession];
}
}
- (void)didReceiveMemoryWarning