Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIlya Grechuhin <i.grechuhin@mapswithme.com>2015-08-27 12:09:27 +0300
committerAlex Zolotarev <alex@maps.me>2015-09-23 03:02:39 +0300
commit2c48d826ee6d944c211c8acabd5eddefcbd80b48 (patch)
tree2f10670a6ab630105081dbdb9ad7a5a5783dbad5 /iphone/Maps/Classes/CustomAlert
parent64a593f383a08224c00ec2253bfc8186019e0945 (diff)
[ios] Fixed Flurry duplicate events.
Diffstat (limited to 'iphone/Maps/Classes/CustomAlert')
-rw-r--r--iphone/Maps/Classes/CustomAlert/DefaultAlert/MWMDefaultAlert.mm8
1 files changed, 4 insertions, 4 deletions
diff --git a/iphone/Maps/Classes/CustomAlert/DefaultAlert/MWMDefaultAlert.mm b/iphone/Maps/Classes/CustomAlert/DefaultAlert/MWMDefaultAlert.mm
index d336e95185..7b7d20f7c0 100644
--- a/iphone/Maps/Classes/CustomAlert/DefaultAlert/MWMDefaultAlert.mm
+++ b/iphone/Maps/Classes/CustomAlert/DefaultAlert/MWMDefaultAlert.mm
@@ -66,8 +66,9 @@ static NSString * const kDefaultAlertNibName = @"MWMDefaultAlert";
+ (instancetype)noWiFiAlertWithName:(NSString *)name downloadBlock:(RightButtonAction)block
{
- [Statistics.instance logEvent:@"No WiFi Alert - open"];
- MWMDefaultAlert * alert = [self defaultAlertWithTitle:name message:nil rightButtonTitle:@"use_cellular_data" leftButtonTitle:@"cancel" rightButtonAction:block];
+ [Statistics.instance logEvent:@"No WiFi Alert - open" withParameters:@{@"map_name" : name}];
+ NSString * title = [NSString stringWithFormat:L(@"no_wifi_ask_cellular_download"), name];
+ MWMDefaultAlert * alert = [self defaultAlertWithTitle:title message:nil rightButtonTitle:@"use_cellular_data" leftButtonTitle:@"cancel" rightButtonAction:block];
[alert setNeedsCloseAlertAfterEnterBackground];
return alert;
}
@@ -97,7 +98,7 @@ static NSString * const kDefaultAlertNibName = @"MWMDefaultAlert";
{
[Statistics.instance logEvent:@"No Current Position Alert - open"];
NSString * message = [NSString stringWithFormat:@"%@\n\n%@", L(@"dialog_routing_error_location_not_found"), L(@"dialog_routing_location_turn_wifi")];
- return [self defaultAlertWithTitle:@"dialog_routing_check_gps" message:message rightButtonTitle:@"OK" leftButtonTitle:nil rightButtonAction:nil];
+ return [self defaultAlertWithTitle:@"dialog_routing_check_gps" message:message rightButtonTitle:@"ok" leftButtonTitle:nil rightButtonAction:nil];
}
+ (instancetype)disabledLocationAlert
@@ -118,7 +119,6 @@ static NSString * const kDefaultAlertNibName = @"MWMDefaultAlert";
+ (instancetype)defaultAlertWithTitle:(nonnull NSString *)title message:(nullable NSString *)message rightButtonTitle:(nonnull NSString *)rightButtonTitle leftButtonTitle:(nullable NSString *)leftButtonTitle rightButtonAction:(nullable RightButtonAction)action
{
- [Statistics.instance logEvent:[NSString stringWithFormat:@"Default Alert With Title:%@ - %@", title, @"open"]];
MWMDefaultAlert * alert = [[[NSBundle mainBundle] loadNibNamed:kDefaultAlertNibName owner:self options:nil] firstObject];
alert.titleLabel.localizedText = title;
alert.messageLabel.localizedText = message;