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: cd909b676dc11d753cdfc3f1037b8315c0b6f551 (plain)
1
2
3
4
5
6
7
8
9
10
11

#import <Foundation/Foundation.h>

@interface LocalNotificationManager : NSObject

+ (instancetype)sharedManager;

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

@end