Bug Fix - Room message search : the message date & time are not displayed

#361
This commit is contained in:
giomfo
2016-09-28 09:38:49 +02:00
parent 55570e0f61
commit 862b3230a8
3 changed files with 83 additions and 0 deletions
+18
View File
@@ -18,6 +18,8 @@
#import "RoomBubbleCellData.h"
#import "MXKRoomBubbleTableViewCell+Vector.h"
@interface RoomSearchDataSource ()
{
MXKRoomDataSource *roomDataSource;
@@ -61,4 +63,20 @@
}
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
UITableViewCell *cell = [super tableView:tableView cellForRowAtIndexPath:indexPath];
// Finalize cell view customization here
if ([cell isKindOfClass:MXKRoomBubbleTableViewCell.class])
{
MXKRoomBubbleTableViewCell *bubbleCell = (MXKRoomBubbleTableViewCell*)cell;
// Display date for each message
[bubbleCell addDateLabel];
}
return cell;
}
@end