forked from organicmaps/organicmaps
[ios] Added cell delete button on edit.
This commit is contained in:
parent
1ee42e89ed
commit
c47e2b0626
1 changed files with 15 additions and 0 deletions
|
@ -1,5 +1,6 @@
|
|||
#import "Common.h"
|
||||
#import "MWMMapDownloaderDefaultDataSource.h"
|
||||
#import "MWMStorage.h"
|
||||
|
||||
#include "Framework.h"
|
||||
|
||||
|
@ -187,6 +188,20 @@ using namespace storage;
|
|||
return nil;
|
||||
}
|
||||
|
||||
- (BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath
|
||||
{
|
||||
NodeAttrs nodeAttrs;
|
||||
GetFramework().Storage().GetNodeAttrs([self countryIdForIndexPath:indexPath], nodeAttrs);
|
||||
NodeStatus const status = nodeAttrs.m_status;
|
||||
return (status == NodeStatus::OnDisk || status == NodeStatus::OnDiskOutOfDate || nodeAttrs.m_localMwmCounter != 0);
|
||||
}
|
||||
|
||||
- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath
|
||||
{
|
||||
if (editingStyle == UITableViewCellEditingStyleDelete)
|
||||
[MWMStorage deleteNode:[self countryIdForIndexPath:indexPath]];
|
||||
}
|
||||
|
||||
#pragma mark - MWMMapDownloaderDataSource
|
||||
|
||||
- (TCountryId)parentCountryId
|
||||
|
|
Loading…
Add table
Reference in a new issue