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

LocalNotificationManager.h « Classes « Maps « iphone - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: bebef86c3d3e0c7c28b3be58a9acc1e4aea2987f (plain)
1
2
3
4
5
6
7
8
9
10
11
12

#import <Foundation/Foundation.h>

@interface LocalNotificationManager : NSObject

+ (instancetype)sharedManager;

- (void)showDownloadMapNotificationIfNeeded:(void (^)(UIBackgroundFetchResult))completionHandler;
- (void)updateLocalNotifications;
- (void)processNotification:(UILocalNotification *)notification onLaunch:(BOOL)onLaunch;

@end