MapsIndoors iOS SDK V3
Loading...
Searching...
No Matches
MPNotificationsHelper.h
Go to the documentation of this file.
1//
2// MPNotificationsHelper.h
3// MapsIndoors
4//
5// Created by Daniel Nielsen on 09/03/16.
6// Copyright Daniel Nielsen. All rights reserved.
7//
8
9#import <Foundation/Foundation.h>
10#import <CoreLocation/CoreLocation.h>
11#import <UIKit/UIKit.h>
12#import "MPMessage.h"
13
14@interface MPNotificationsHelper : NSObject
15
16+ (void) setupNotificationsForApp:(nonnull UIApplication *)application withLocationManager:(nonnull CLLocationManager*)locationManager;
17+ (void) fetchMessagesForSolution: (nonnull NSString*)solutionId completionHandler: (nullable void (^)(UIBackgroundFetchResult))completionHandler messageHandler: (nullable void (^)(MPMessage* _Nonnull message))messageHandler;
18+ (void) locationManager:(nonnull CLLocationManager *)manager didEnterRegion:(nonnull CLRegion *)region;
19+ (void) monitorRegionForMessage:(nonnull MPMessage*)message withLocationManager:(nonnull CLLocationManager*)locationManager;
20
21@end
Definition MPMessage.h:13
Definition MPNotificationsHelper.h:15