Minor changes in recording view display

This commit is contained in:
Benjamin Verdier 2018-07-25 17:04:07 +02:00
parent e237caa1be
commit 52d3b3c4ed
2 changed files with 3 additions and 2 deletions

View file

@ -67,7 +67,7 @@ NSArray *sortedRecordings;
for (NSInteger j = 0; j < [self.tableView numberOfSections]; ++j){
for (NSInteger i = 0; i < [self.tableView numberOfRowsInSection:j]; ++i)
{
[[self.tableView cellForRowAtIndexPath:[NSIndexPath indexPathForRow:i inSection:j]] setContact:nil];
[[self.tableView cellForRowAtIndexPath:[NSIndexPath indexPathForRow:i inSection:j]] setRecording:nil];
}
}

View file

@ -15,6 +15,7 @@
#import "StatusBarView.h"
#import "ShopView.h"
#import "LinphoneManager.h"
#import "RecordingsListView.h"
@implementation SideMenuEntry
@ -64,7 +65,7 @@
addObject:[[SideMenuEntry alloc] initWithTitle:NSLocalizedString(@"Recordings", nil)
tapBlock:^() {
[PhoneMainView.instance
changeCurrentView:AssistantView.compositeViewDescription];
changeCurrentView:RecordingsListView.compositeViewDescription];
}]];
[_sideMenuEntries
addObject:[[SideMenuEntry alloc] initWithTitle:NSLocalizedString(@"Settings", nil)