[Spaces] Show suggested in room lists #4501

- Show suggested rooms section in home screen (no actions)
- Show suggested rooms section in rooms screen (no actions)
This commit is contained in:
Gil Eluard
2021-07-29 23:24:34 +02:00
parent baeaacd1f9
commit ac174fafda
11 changed files with 188 additions and 68 deletions
+9 -3
View File
@@ -103,8 +103,13 @@
- (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section
{
// Hide the header to merge Invites and Rooms into a single list.
return 0.0;
if ([tableView numberOfSections] <= 1)
{
// Hide the header to merge Invites and Rooms into a single list.
return 0.0;
}
return [super tableView:tableView heightForHeaderInSection:section];
}
#pragma mark -
@@ -155,7 +160,8 @@
- (NSUInteger)totalItemCounts
{
return recentsDataSource.conversationCellDataArray.count
+ recentsDataSource.invitesCellDataArray.count;
+ recentsDataSource.invitesCellDataArray.count
+ recentsDataSource.suggestedRoomCellDataArray.count;
}
@end