[iOS] Sharing Options пустой группы активна при тапе на More

https://jira.mail.ru/browse/MAPSME-12120
This commit is contained in:
Alexander Boriskov 2019-10-29 18:21:51 +03:00 committed by Aleksey Belousov
parent 571a29e69d
commit 3d01e9af23

View file

@ -293,17 +293,22 @@ using namespace std;
}
- (IBAction)onMore:(UIBarButtonItem *)sender {
MWMTrackIDCollection trackIds = [[MWMBookmarksManager sharedManager] trackIdsForCategory:self.categoryId];
MWMMarkIDCollection bookmarkdsIds = [[MWMBookmarksManager sharedManager] bookmarkIdsForCategory:self.categoryId];
auto actionSheet = [UIAlertController alertControllerWithTitle:nil
message:nil
preferredStyle:UIAlertControllerStyleActionSheet];
[actionSheet addAction:[UIAlertAction actionWithTitle:L(@"sharing_options")
if (trackIds.count > 0 || bookmarkdsIds.count > 0) {
[actionSheet addAction:[UIAlertAction actionWithTitle:L(@"sharing_options")
style:UIAlertActionStyleDefault
handler:^(UIAlertAction *_Nonnull action) {
[self shareCategory];
[Statistics logEvent:kStatBookmarksListItemSettings
withParameters:@{kStatOption: kStatSharingOptions}];
}]];
}
[actionSheet addAction:[UIAlertAction actionWithTitle:L(@"search_show_on_map")
style:UIAlertActionStyleDefault