[ios] Added cell delete button on edit.

This commit is contained in:
Ilya Grechuhin 2016-03-01 17:09:01 +03:00 committed by Sergey Yershov
parent 1ee42e89ed
commit c47e2b0626

View file

@ -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