Questions tagged [clbeaconregion]
25 questions
0
votes
1 answer
iBeacon monitoring mode proximity for beacon region
I have a question about iBeacons in monitoring mode. I want to have an interaction with a notification being sent to a user if the device is in 1-2m vicinity to the beacon.
There used to be a function called:
var radius: CLLocationDistance { get…

DoubleSpace
- 253
- 1
- 2
- 4
0
votes
1 answer
Stop Bluetooth Alert Pop on iOS 10.3
When I open my app on iOS 10.3 devices I get Bluetooth Alert Pop each time. Our App supports Apple Watch as well. I don't get this notification on devices lower than iOS 10.3. I tried all questions related to this on stackoverflow yet nothing clicks…

Manoj
- 1,482
- 2
- 20
- 53
0
votes
1 answer
What happens in iOS stop monitoring for beacon region? How can we get iOS create more subsequent didEnterRegion events?
I am playing with iBeacon and I find it frustrating that whenever we are inside a beacon region and then we go outside it can take up to 15 minutes until the phone detects the "Exit event".
In order to overcome this I am considering stopping the…

mm24
- 9,280
- 12
- 75
- 170
0
votes
1 answer
CLBeaconRegion not monitored with StartMonitoringForRegion in simulator with XCTest
In my XCTest case, I'm calling StartMonitoringForRegion on a CLBeaconRegion with my CLLocationManager instance and it doesn't appear in my monitoredRegion property. It only happens in the simulator. Is the a bug or I'm doing something wrong?

iamarnold
- 705
- 1
- 8
- 22
0
votes
0 answers
Is there anyway to monitor CLBeaconRegion without using CLLocationManager
In my current app i am using
self.locationManager = [[CLLocationManager alloc] init];
if ([_locationManager respondsToSelector:@selector(requestAlwaysAuthorization)])/
[_locationManager requestAlwaysAuthorization];
…

Mihir Mehta
- 13,743
- 3
- 64
- 88
0
votes
1 answer
How to log the time when the user is in range ibeacon
I am developing an ibeacon app on swift and i would like to log the minutes that every client/user spends within a beacon range.
I would really appreciate any suggestions.

Savas Kon
- 1
- 2
0
votes
0 answers
App crashes when trying to range beacons after working fine for 3-4 days
I have this beacon app that - much like everyone else's beacon app - monitors a certain number of regions, and once it enters a region, it starts ranging for 3 seconds and then stops ranging and continues monitoring. This all happens in the…

Pætur Magnussen
- 901
- 1
- 11
- 24
0
votes
2 answers
Connecting to multiple iBeacons at once
If i have a device acting as a receiver and it connects to an iBeacon, what would happen if it connected to another iBeacon whilst still processing the connection to the first (e.g. Hadn't finished the running the didEnterRegion method)? Does the…

Tom Cornish
- 71
- 1
- 5
-1
votes
1 answer
Setting the major and minor value of iBeacon
I want to set the major and minor value correctly as I enter in a region.For example,I have different queues for different kinds of customer. Like Premium and silver categories.
If a customer goes in the lane of Premium, He should broadcast his…

Talib Shabbir Hussain
- 243
- 1
- 4
- 13
-1
votes
2 answers
Remove CLBeaconRegion from monitoring depending on current location
So I was looking for a way to remove a BeaconRegion from the monitored regions depending on how far it is from my current location.
I though I could use the center property, though I think I'm missing something... Because the latitude/longitude…

miya
- 1,059
- 1
- 11
- 20