Skip to content

Commit 9c39ca6

Browse files
committed
Reporting of notification region events to IGLocationManager's delegate.
1 parent 67490c3 commit 9c39ca6

File tree

5 files changed

+20
-4
lines changed

5 files changed

+20
-4
lines changed

Framework/IngeoSDK.framework/Headers/IGLocationManagerDelegate.h

Lines changed: 18 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,25 @@
3434
/**
3535
Tells the delegate that a new Motion State was detected.
3636
37-
@param manager The IGLocationManager object that generated the update event.
38-
@param motionState The new Motion State the user has just entered into.
37+
@param manager The IGLocationManager object that generated the motion state change.
38+
@param motionState The Motion State the user is currently at.
3939
*/
4040
- (void)igLocationManager:(IGLocationManager *)manager didDetectMotionState:(IGMotionState)motionState;
4141

42+
/**
43+
Tells the delegate that the user entered the specified region.
44+
45+
@param manager The IGLocationManager object reporting the event.
46+
@param region An object containing information about the region that was entered.
47+
*/
48+
- (void)igLocationManager:(IGLocationManager *)manager didEnterRegion:(CLRegion *)region;
49+
50+
/**
51+
Tells the delegate that the user left the specified region.
52+
53+
@param manager The IGLocationManager object reporting the event.
54+
@param region An object containing information about the region that was exited.
55+
*/
56+
- (void)igLocationManager:(IGLocationManager *)manager didExitRegion:(CLRegion *)region;
57+
4258
@end

Framework/IngeoSDK.framework/Headers/IGNotificationsManager.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
repeat:(BOOL)repeat
2525
registerResultBlock:(void (^)(NSError *error, IGNotification *notification))result;
2626

27-
+ (NSArray<IGNotification *> *)activeNotifications;
27+
+ (NSArray *)activeNotifications;
2828

2929
+ (BOOL)unregisterNotification:(IGNotification *)notification;
3030

2 Bytes
Binary file not shown.

Framework/IngeoSDK.framework/IngeoSDK

10.3 KB
Binary file not shown.

IngeoSDK.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
Pod::Spec.new do |s|
33
s.name = "IngeoSDK"
4-
s.version = "1.2.3"
4+
s.version = "1.3.0"
55
s.summary = "Ingeo iOS SDK"
66
s.homepage = "http://ingeo.io"
77
s.license = 'Apache License, Version 2.0'

0 commit comments

Comments
 (0)