File tree 3 files changed +5
-5
lines changed
3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 31
31
32
32
+ (instancetype ) sharedBeaconScanner ;
33
33
34
- - (void ) startScanning ;
35
- - (void ) stopScanning ;
34
+ - (void ) startScanningAltbeacons ;
35
+ - (void ) stopScanningAltbeacons ;
36
36
- (NSNumber *) calibratedRSSIFor : (RNLBeacon *)beacon ;
37
37
- (NSArray *) trackedBeacons ;
38
38
Original file line number Diff line number Diff line change @@ -67,11 +67,11 @@ - (instancetype) init {
67
67
68
68
self.beaconTracker = [[RNLBeaconTracker alloc ] init ];
69
69
70
- [self startScanning ];
70
+ [self startScanningAltbeacons ];
71
71
return self;
72
72
}
73
73
- (void ) dealloc {
74
- [self stopScanning ];
74
+ [self stopScanningAltbeacons ];
75
75
}
76
76
77
77
- (void )startScanning {
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ class Sample {
12
12
var scanner : RNLBeaconScanner ?
13
13
func sample( ) {
14
14
scanner = RNLBeaconScanner . shared ( )
15
- scanner? . startScanning ( )
15
+ scanner? . startScanningAltbeacons ( )
16
16
17
17
// Execute this code periodically (every second or so) to view the beacons detected
18
18
if let detectedBeacons = scanner? . trackedBeacons ( ) as? [ RNLBeacon ] {
You can’t perform that action at this time.
0 commit comments