[ios] Added download all button.

This commit is contained in:
Ilya Grechuhin 2016-01-23 17:49:22 +03:00 committed by Sergey Yershov
parent 9822e46e91
commit 79a7baef7b

View file

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