Fixed +showMapsWithMeIsNotInstalledDialog function

This commit is contained in:
Igor Khmurets 2013-12-19 13:48:27 +03:00
parent 09ddaeb4a2
commit 1fee245292
4 changed files with 5 additions and 5 deletions

View file

@ -240,9 +240,6 @@ static NSString * mapsWithMeIsNotInstalledPage =
navController.navigationBar.topItem.rightBarButtonItem = [[UIBarButtonItem alloc] initWithTitle:@"Close" style:UIBarButtonItemStyleDone target:webController action:@selector(onCloseButtonClicked:)];
UIWindow * window = [[UIApplication sharedApplication].windows firstObject];
if ([window.subviews count] == 2)
[[window.subviews lastObject] removeFromSuperview];
[window.rootViewController presentModalViewController:navController animated:YES];
}

View file

@ -32,5 +32,6 @@
@property (nonatomic, assign) NSInteger cityIndex;
@property (strong, nonatomic) NSDictionary * city;
@property (strong, nonatomic) UIPopoverController * masterPopoverController;
@end

View file

@ -32,7 +32,6 @@
@interface CityDetailViewController ()
@property (strong, nonatomic) UIPopoverController * masterPopoverController;
- (void)configureView;
@end

View file

@ -68,7 +68,10 @@
MWMPin * pin = [[MWMPin alloc] initWithLat:[city[@"lat"] doubleValue] lon:[city[@"lon"] doubleValue] title:city[@"name"] andId:pinId];
[array addObject:pin];
}
// Your should hide any top view objects like UIPopoverController before calling +showPins:
// If user does not installed MapsWithMe app, a popup dialog will be shown
[self.detailViewController.masterPopoverController dismissPopoverAnimated:YES];
[MWMApi showPins:array];
}