Fixed +showMapsWithMeIsNotInstalledDialog function
This commit is contained in:
parent
09ddaeb4a2
commit
1fee245292
4 changed files with 5 additions and 5 deletions
|
@ -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];
|
||||
}
|
||||
|
||||
|
|
|
@ -32,5 +32,6 @@
|
|||
|
||||
@property (nonatomic, assign) NSInteger cityIndex;
|
||||
@property (strong, nonatomic) NSDictionary * city;
|
||||
@property (strong, nonatomic) UIPopoverController * masterPopoverController;
|
||||
|
||||
@end
|
||||
|
|
|
@ -32,7 +32,6 @@
|
|||
|
||||
@interface CityDetailViewController ()
|
||||
|
||||
@property (strong, nonatomic) UIPopoverController * masterPopoverController;
|
||||
- (void)configureView;
|
||||
|
||||
@end
|
||||
|
|
|
@ -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];
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue