UX Rework - Rooms tab: Tap on the current tab's icon jumps to next unread.

This commit is contained in:
Giom Foret
2017-06-14 09:41:15 +02:00
parent 718d0847df
commit 8cd95af42c
3 changed files with 53 additions and 0 deletions
@@ -674,4 +674,15 @@
[currentAlert showInViewController:self];
}
#pragma mark - UITabBarDelegate
- (void)tabBar:(UITabBar *)tabBar didSelectItem:(UITabBarItem *)item
{
if (item.tag == TABBAR_ROOMS_INDEX && self.selectedIndex == TABBAR_ROOMS_INDEX)
{
// Scroll to the next room with missed notifications.
[self.roomsViewController scrollToNextRoomWithMissedNotifications];
}
}
@end