File tree 5 files changed +20
-4
lines changed
Framework/IngeoSDK.framework
5 files changed +20
-4
lines changed Original file line number Diff line number Diff line change 34
34
/* *
35
35
Tells the delegate that a new Motion State was detected.
36
36
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 .
39
39
*/
40
40
- (void )igLocationManager : (IGLocationManager *)manager didDetectMotionState : (IGMotionState)motionState ;
41
41
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
+
42
58
@end
Original file line number Diff line number Diff line change 24
24
repeat : (BOOL )repeat
25
25
registerResultBlock : (void (^)(NSError *error, IGNotification *notification))result ;
26
26
27
- + (NSArray <IGNotification *> *)activeNotifications ;
27
+ + (NSArray *)activeNotifications ;
28
28
29
29
+ (BOOL )unregisterNotification : (IGNotification *)notification ;
30
30
Original file line number Diff line number Diff line change 1
1
2
2
Pod ::Spec . new do |s |
3
3
s . name = "IngeoSDK"
4
- s . version = "1.2.3 "
4
+ s . version = "1.3.0 "
5
5
s . summary = "Ingeo iOS SDK"
6
6
s . homepage = "http://ingeo.io"
7
7
s . license = 'Apache License, Version 2.0'
You can’t perform that action at this time.
0 commit comments