From c47e2b06269638f9d98645f17ef247009cd00091 Mon Sep 17 00:00:00 2001 From: Ilya Grechuhin Date: Tue, 1 Mar 2016 17:09:01 +0300 Subject: [PATCH] [ios] Added cell delete button on edit. --- .../MWMMapDownloaderDefaultDataSource.mm | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/iphone/Maps/Classes/MapDownloader/DataSources/MWMMapDownloaderDefaultDataSource.mm b/iphone/Maps/Classes/MapDownloader/DataSources/MWMMapDownloaderDefaultDataSource.mm index dc996a83e1..b33ed245d6 100644 --- a/iphone/Maps/Classes/MapDownloader/DataSources/MWMMapDownloaderDefaultDataSource.mm +++ b/iphone/Maps/Classes/MapDownloader/DataSources/MWMMapDownloaderDefaultDataSource.mm @@ -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