forked from organicmaps/organicmaps
[iPhone][Downloader] Fixed cell update for download progress
This commit is contained in:
parent
35a9815dd2
commit
cd04393dde
1 changed files with 27 additions and 8 deletions
|
@ -35,6 +35,19 @@ static NSInteger RowFromIndex(TIndex const & index)
|
|||
return index.m_group;
|
||||
}
|
||||
|
||||
static bool IsOurIndex(TIndex const & theirs, TIndex const & ours)
|
||||
{
|
||||
TIndex theirsFixed = theirs;
|
||||
if (theirsFixed.m_region != -1)
|
||||
theirsFixed.m_region = -1;
|
||||
else if (theirsFixed.m_country != -1)
|
||||
theirsFixed.m_country = -1;
|
||||
else
|
||||
theirsFixed.m_group = -1;
|
||||
|
||||
return ours == theirsFixed;
|
||||
}
|
||||
|
||||
@implementation CountriesViewController
|
||||
|
||||
- (void) OnCloseButton: (id) sender
|
||||
|
@ -336,18 +349,24 @@ TIndex g_clickedIndex;
|
|||
|
||||
- (void) OnCountryChange: (TIndex const &) index
|
||||
{
|
||||
UITableView * tableView = (UITableView *)self.view;
|
||||
UITableViewCell * cell = [tableView cellForRowAtIndexPath: [NSIndexPath indexPathForRow: RowFromIndex(index) inSection: 0]];
|
||||
if (cell)
|
||||
[self UpdateCell: cell forCountry: index];
|
||||
if (IsOurIndex(index, m_index))
|
||||
{
|
||||
UITableView * tableView = (UITableView *)self.view;
|
||||
UITableViewCell * cell = [tableView cellForRowAtIndexPath: [NSIndexPath indexPathForRow: RowFromIndex(index) inSection: 0]];
|
||||
if (cell)
|
||||
[self UpdateCell: cell forCountry: index];
|
||||
}
|
||||
}
|
||||
|
||||
- (void) OnDownload: (TIndex const &) index withProgress: (TDownloadProgress const &) progress
|
||||
{
|
||||
UITableView * tableView = (UITableView *)self.view;
|
||||
UITableViewCell * cell = [tableView cellForRowAtIndexPath: [NSIndexPath indexPathForRow: RowFromIndex(index) inSection: 0]];
|
||||
if (cell)
|
||||
cell.detailTextLabel.text = [NSString stringWithFormat: @"Downloading %qu%%, touch to cancel", progress.first * 100 / progress.second];
|
||||
if (IsOurIndex(index, m_index))
|
||||
{
|
||||
UITableView * tableView = (UITableView *)self.view;
|
||||
UITableViewCell * cell = [tableView cellForRowAtIndexPath: [NSIndexPath indexPathForRow: RowFromIndex(index) inSection: 0]];
|
||||
if (cell)
|
||||
cell.detailTextLabel.text = [NSString stringWithFormat: @"Downloading %qu%%, touch to cancel", progress.first * 100 / progress.second];
|
||||
}
|
||||
}
|
||||
|
||||
@end
|
||||
|
|
Loading…
Add table
Reference in a new issue