forked from organicmaps/organicmaps
[ios] Added download all button.
This commit is contained in:
parent
9822e46e91
commit
79a7baef7b
1 changed files with 13 additions and 0 deletions
|
@ -30,6 +30,14 @@ extern NSString * const MapsStatusChangedNotification;
|
|||
ASSERT(position < self.tree.GetChildCount(), ());
|
||||
self.title = @(self.tree.GetChildName(position).c_str());
|
||||
self.tree.SetChildAsRoot(position);
|
||||
if (self.tree.IsDownloadAllAvailable())
|
||||
{
|
||||
self.navigationItem.rightBarButtonItem =
|
||||
[[UIBarButtonItem alloc] initWithTitle:L(@"download_all")
|
||||
style:UIBarButtonItemStylePlain
|
||||
target:self
|
||||
action:@selector(onDownloadAll)];
|
||||
}
|
||||
}
|
||||
|
||||
__weak CountryTreeVC * weakSelf = self;
|
||||
|
@ -69,6 +77,11 @@ extern NSString * const MapsStatusChangedNotification;
|
|||
}
|
||||
}
|
||||
|
||||
- (void)onDownloadAll
|
||||
{
|
||||
self.tree.DownloadAll();
|
||||
}
|
||||
|
||||
#define TOP_ROWS_COUNT 1
|
||||
|
||||
- (NSIndexPath *)downloadedCountriesIndexPath
|
||||
|
|
Loading…
Add table
Reference in a new issue